| OLD | NEW |
| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//v8/gni/v8.gni") | 6 import("//v8/gni/v8.gni") |
| 7 | 7 |
| 8 # This is depended upon from the browser DLL on Windows, where V8 is not used, | 8 # This is depended upon from the browser DLL on Windows, where V8 is not used, |
| 9 # but features are enabled. This cannot depend on V8. | 9 # but features are enabled. This cannot depend on V8. |
| 10 component("gin_features") { | 10 component("gin_features") { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 executable("gin_shell") { | 116 executable("gin_shell") { |
| 117 sources = [ | 117 sources = [ |
| 118 "shell/gin_main.cc", | 118 "shell/gin_main.cc", |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 deps = [ | 121 deps = [ |
| 122 ":gin", | 122 ":gin", |
| 123 "//base", | 123 "//base", |
| 124 "//base:i18n", | 124 "//base:i18n", |
| 125 "//build/config/sanitizers:deps", | 125 "//build/config:exe_and_shlib_deps", |
| 126 "//build/win:default_exe_manifest", | 126 "//build/win:default_exe_manifest", |
| 127 "//v8", | 127 "//v8", |
| 128 ] | 128 ] |
| 129 | 129 |
| 130 configs += [ "//v8:external_startup_data" ] | 130 configs += [ "//v8:external_startup_data" ] |
| 131 } | 131 } |
| 132 | 132 |
| 133 source_set("gin_test") { | 133 source_set("gin_test") { |
| 134 testonly = true | 134 testonly = true |
| 135 sources = [ | 135 sources = [ |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 "shell/hello_world.js", | 192 "shell/hello_world.js", |
| 193 "test/file_unittests.js", | 193 "test/file_unittests.js", |
| 194 "test/gtest_unittests.js", | 194 "test/gtest_unittests.js", |
| 195 "../OWNERS", | 195 "../OWNERS", |
| 196 ] | 196 ] |
| 197 | 197 |
| 198 data_deps = [ | 198 data_deps = [ |
| 199 ":gin_shell", | 199 ":gin_shell", |
| 200 ] | 200 ] |
| 201 } | 201 } |
| OLD | NEW |