| 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("//build_overrides/v8.gni") | 5 import("//build_overrides/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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 executable("gin_shell") { | 128 executable("gin_shell") { |
| 129 sources = [ | 129 sources = [ |
| 130 "shell/gin_main.cc", | 130 "shell/gin_main.cc", |
| 131 ] | 131 ] |
| 132 | 132 |
| 133 deps = [ | 133 deps = [ |
| 134 ":gin", | 134 ":gin", |
| 135 "//base", | 135 "//base", |
| 136 "//base:i18n", | 136 "//base:i18n", |
| 137 "//build/config/sanitizers:deps", | 137 "//build/config/sanitizers:deps", |
| 138 "//build/win:default_exe_manifest", |
| 138 "//v8", | 139 "//v8", |
| 139 ] | 140 ] |
| 140 | 141 |
| 141 configs += [ "//v8:external_startup_data" ] | 142 configs += [ "//v8:external_startup_data" ] |
| 142 } | 143 } |
| 143 | 144 |
| 144 source_set("gin_test") { | 145 source_set("gin_test") { |
| 145 testonly = true | 146 testonly = true |
| 146 sources = [ | 147 sources = [ |
| 147 "test/file.cc", | 148 "test/file.cc", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "test/expect.js", | 198 "test/expect.js", |
| 198 "test/file_unittests.js", | 199 "test/file_unittests.js", |
| 199 "test/gtest_unittests.js", | 200 "test/gtest_unittests.js", |
| 200 "../OWNERS", | 201 "../OWNERS", |
| 201 ] | 202 ] |
| 202 | 203 |
| 203 data_deps = [ | 204 data_deps = [ |
| 204 ":gin_shell", | 205 ":gin_shell", |
| 205 ] | 206 ] |
| 206 } | 207 } |
| OLD | NEW |