| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 5010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5021 "//components/spellcheck:build_features", | 5021 "//components/spellcheck:build_features", |
| 5022 "//content/test:test_support", | 5022 "//content/test:test_support", |
| 5023 "//extensions/features", | 5023 "//extensions/features", |
| 5024 "//media/cast:test_support", | 5024 "//media/cast:test_support", |
| 5025 "//testing/gmock", | 5025 "//testing/gmock", |
| 5026 "//testing/gtest", | 5026 "//testing/gtest", |
| 5027 "//testing/perf", | 5027 "//testing/perf", |
| 5028 ] | 5028 ] |
| 5029 | 5029 |
| 5030 data = [ | 5030 data = [ |
| 5031 "//chrome/test/data/extensions/api_test/", |
| 5032 |
| 5031 # Needed for isolate script to execute. | 5033 # Needed for isolate script to execute. |
| 5032 "//testing/scripts/common.py", | 5034 "//testing/scripts/common.py", |
| 5033 "//testing/xvfb.py", | 5035 "//testing/xvfb.py", |
| 5034 "//testing/scripts/run_gtest_perf_test.py", | 5036 "//testing/scripts/run_gtest_perf_test.py", |
| 5035 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 5037 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 5036 ] | 5038 ] |
| 5037 | 5039 |
| 5038 if (is_win) { | 5040 if (is_win) { |
| 5039 configs -= [ "//build/config/win:default_incremental_linking" ] | 5041 configs -= [ "//build/config/win:default_incremental_linking" ] |
| 5040 configs += | 5042 configs += |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5135 } | 5137 } |
| 5136 | 5138 |
| 5137 if (is_win) { | 5139 if (is_win) { |
| 5138 loadable_module("conflicts_dll") { | 5140 loadable_module("conflicts_dll") { |
| 5139 testonly = true | 5141 testonly = true |
| 5140 sources = [ | 5142 sources = [ |
| 5141 "conflicts/conflicts_dll.cc", | 5143 "conflicts/conflicts_dll.cc", |
| 5142 ] | 5144 ] |
| 5143 } | 5145 } |
| 5144 } | 5146 } |
| OLD | NEW |