Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(459)

Side by Side Diff: gin/BUILD.gn

Issue 1061743002: Add more dirs to gn check set (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/module_args/v8.gni") 5 import("//build/module_args/v8.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("gin") { 8 component("gin") {
9 sources = [ 9 sources = [
10 "arguments.cc", 10 "arguments.cc",
(...skipping 30 matching lines...) Expand all
41 "per_context_data.cc", 41 "per_context_data.cc",
42 "per_context_data.h", 42 "per_context_data.h",
43 "per_isolate_data.cc", 43 "per_isolate_data.cc",
44 "per_isolate_data.h", 44 "per_isolate_data.h",
45 "public/context_holder.h", 45 "public/context_holder.h",
46 "public/debug.h", 46 "public/debug.h",
47 "public/gin_embedders.h", 47 "public/gin_embedders.h",
48 "public/isolate_holder.h", 48 "public/isolate_holder.h",
49 "public/v8_platform.h", 49 "public/v8_platform.h",
50 "public/wrapper_info.h", 50 "public/wrapper_info.h",
51 "run_microtasks_observer.cc",
52 "run_microtasks_observer.h",
51 "runner.cc", 53 "runner.cc",
52 "runner.h", 54 "runner.h",
53 "run_microtasks_observer.cc",
54 "run_microtasks_observer.h",
55 "shell_runner.cc", 55 "shell_runner.cc",
56 "shell_runner.h", 56 "shell_runner.h",
57 "try_catch.cc", 57 "try_catch.cc",
58 "try_catch.h", 58 "try_catch.h",
59 "v8_platform.cc", 59 "v8_platform.cc",
60 "wrappable.cc", 60 "wrappable.cc",
61 "wrappable.h", 61 "wrappable.h",
62 "wrapper_info.cc", 62 "wrapper_info.cc",
63 ] 63 ]
64 64
65 defines = [ "GIN_IMPLEMENTATION" ] 65 defines = [ "GIN_IMPLEMENTATION" ]
66 66
67 public_deps = [ 67 public_deps = [
68 "//base", 68 "//base",
69 "//v8", 69 "//v8",
70 ] 70 ]
71 deps = [ 71 deps = [
72 "//base/third_party/dynamic_annotations", 72 "//base/third_party/dynamic_annotations",
73 "//crypto",
73 ] 74 ]
74 if (v8_use_external_startup_data && is_win) { 75 if (v8_use_external_startup_data && is_win) {
75 deps += [ 76 deps += [
76 ":gin_v8_snapshot_fingerprint", 77 ":gin_v8_snapshot_fingerprint",
77 "//crypto:crypto", 78 "//crypto:crypto",
78 ] 79 ]
79 sources += [ "$target_gen_dir/v8_snapshot_fingerprint.cc" ] 80 sources += [ "$target_gen_dir/v8_snapshot_fingerprint.cc" ]
80 defines += [ "V8_VERIFY_EXTERNAL_STARTUP_DATA" ] 81 defines += [ "V8_VERIFY_EXTERNAL_STARTUP_DATA" ]
81 } 82 }
82 } 83 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 ] 145 ]
145 } 146 }
146 147
147 test("gin_unittests") { 148 test("gin_unittests") {
148 sources = [ 149 sources = [
149 "converter_unittest.cc", 150 "converter_unittest.cc",
150 "interceptor_unittest.cc", 151 "interceptor_unittest.cc",
151 "modules/module_registry_unittest.cc", 152 "modules/module_registry_unittest.cc",
152 "modules/timer_unittest.cc", 153 "modules/timer_unittest.cc",
153 "per_context_data_unittest.cc", 154 "per_context_data_unittest.cc",
155 "shell/gin_shell_unittest.cc",
154 "shell_runner_unittest.cc", 156 "shell_runner_unittest.cc",
155 "shell/gin_shell_unittest.cc",
156 "test/run_all_unittests.cc", 157 "test/run_all_unittests.cc",
157 "test/run_js_tests.cc", 158 "test/run_js_tests.cc",
158 "wrappable_unittest.cc", 159 "wrappable_unittest.cc",
159 ] 160 ]
160 161
161 deps = [ 162 deps = [
162 ":gin_test", 163 ":gin_test",
163 "//base/test:test_support", 164 "//base/test:test_support",
164 "//v8", 165 "//v8",
165 ] 166 ]
166 } 167 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698