Add more dirs to gn check set

We maintain these all ourselves now and they 'gn check' clean so add
them to the default check set so they stay working.

R=tonyg@chromium.org

Review URL: https://codereview.chromium.org/1061743002
diff --git a/.gn b/.gn
index e7065e3..035c6c8 100644
--- a/.gn
+++ b/.gn
@@ -12,10 +12,17 @@
 # The set of targets known to pass 'gn check'. When all targets pass, remove
 # this.
 check_targets = [
+  "//cc/*",
+  "//crypto/*",
+  "//dart/*",
   "//examples/*",
+  "//gin/*",
   "//mojo/*",
+  "//mojom/*",
   "//services/*",
   "//shell/*",
+  "//skia/*",
   "//sky/*",
   "//ui/*",
+  "//url/*",
 ]
diff --git a/cc/BUILD.gn b/cc/BUILD.gn
index b6af2d5..1f723c0 100644
--- a/cc/BUILD.gn
+++ b/cc/BUILD.gn
@@ -124,7 +124,6 @@
     "quads/tile_draw_quad.h",
     "quads/yuv_video_draw_quad.cc",
     "quads/yuv_video_draw_quad.h",
-    "resources/layer_painter.h",
     "resources/layer_quad.cc",
     "resources/layer_quad.h",
     "resources/platform_color.h",
@@ -362,12 +361,7 @@
 
 test("cc_perftests") {
   sources = [
-    "resources/picture_layer_tiling_perftest.cc",
-    "resources/picture_pile_impl_perftest.cc",
-    "resources/task_graph_runner_perftest.cc",
     "resources/texture_compressor_perftest.cc",
-    "resources/tile_manager_perftest.cc",
-    "resources/tile_task_worker_pool_perftest.cc",
     "test/cc_test_suite.cc",
     "test/run_all_perftests.cc",
   ]
diff --git a/gin/BUILD.gn b/gin/BUILD.gn
index 8f7e360..a822828 100644
--- a/gin/BUILD.gn
+++ b/gin/BUILD.gn
@@ -48,10 +48,10 @@
     "public/isolate_holder.h",
     "public/v8_platform.h",
     "public/wrapper_info.h",
-    "runner.cc",
-    "runner.h",
     "run_microtasks_observer.cc",
     "run_microtasks_observer.h",
+    "runner.cc",
+    "runner.h",
     "shell_runner.cc",
     "shell_runner.h",
     "try_catch.cc",
@@ -70,6 +70,7 @@
   ]
   deps = [
     "//base/third_party/dynamic_annotations",
+    "//crypto",
   ]
   if (v8_use_external_startup_data && is_win) {
     deps += [
@@ -151,8 +152,8 @@
     "modules/module_registry_unittest.cc",
     "modules/timer_unittest.cc",
     "per_context_data_unittest.cc",
-    "shell_runner_unittest.cc",
     "shell/gin_shell_unittest.cc",
+    "shell_runner_unittest.cc",
     "test/run_all_unittests.cc",
     "test/run_js_tests.cc",
     "wrappable_unittest.cc",