Chromium Code Reviews| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 237 "//chrome:strings", | 237 "//chrome:strings", |
| 238 "//chrome:packed_extra_resources", | 238 "//chrome:packed_extra_resources", |
| 239 "//chrome:packed_resources", | 239 "//chrome:packed_resources", |
| 240 "//content/app/resources", | 240 "//content/app/resources", |
| 241 "//crypto:platform", | 241 "//crypto:platform", |
| 242 "//crypto:test_support", | 242 "//crypto:test_support", |
| 243 "//google_apis:test_support", | 243 "//google_apis:test_support", |
| 244 "//net", | 244 "//net", |
| 245 "//net:net_resources", | 245 "//net:net_resources", |
| 246 "//net:test_support", | 246 "//net:test_support", |
| 247 | 247 "//ppapi:ppapi_tests", |
|
brettw
2015/03/04 02:46:47
Can you put this in the data_deps below instead si
jam
2015/03/04 15:17:12
Done.
| |
| 248 #"//ppapi:ppapi_tests", # TODO(GYP) this doesn't exist yet. | |
| 249 "//skia", | 248 "//skia", |
| 250 "//sync", | 249 "//sync", |
| 251 "//testing/gmock", | 250 "//testing/gmock", |
| 252 "//testing/gtest", | 251 "//testing/gtest", |
| 253 "//third_party/hunspell", | 252 "//third_party/hunspell", |
| 254 "//third_party/icu", | 253 "//third_party/icu", |
| 255 "//third_party/libpng", | 254 "//third_party/libpng", |
| 256 "//third_party/npapi", | 255 "//third_party/npapi", |
| 257 "//third_party/zlib", | 256 "//third_party/zlib", |
| 258 "//ui/base:test_support", | 257 "//ui/base:test_support", |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 662 "//ui/resources", | 661 "//ui/resources", |
| 663 "//ui/web_dialogs:test_support", | 662 "//ui/web_dialogs:test_support", |
| 664 "//v8", | 663 "//v8", |
| 665 ] | 664 ] |
| 666 if (has_d8_definition) { | 665 if (has_d8_definition) { |
| 667 deps += [ ":browser_tests_js_webui" ] | 666 deps += [ ":browser_tests_js_webui" ] |
| 668 } | 667 } |
| 669 | 668 |
| 670 # Runtime dependencies | 669 # Runtime dependencies |
| 671 data_deps = [ | 670 data_deps = [ |
| 672 #"//ppapi:ppapi_tests", # TODO(GYP) this doesn't exist yet. | 671 "//ppapi:ppapi_tests", |
| 672 | |
| 673 #'../remoting/remoting.gyp:remoting_browser_test_resources', TODO(GYP) | 673 #'../remoting/remoting.gyp:remoting_browser_test_resources', TODO(GYP) |
| 674 #'../remoting/remoting.gyp:remoting_webapp_unittest', TODO(GYP) | 674 #'../remoting/remoting.gyp:remoting_webapp_unittest', TODO(GYP) |
| 675 "//third_party/mesa:osmesa", | 675 "//third_party/mesa:osmesa", |
| 676 "//third_party/widevine/cdm:widevine_test_license_server", | 676 "//third_party/widevine/cdm:widevine_test_license_server", |
| 677 ] | 677 ] |
| 678 | 678 |
| 679 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 679 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 680 | 680 |
| 681 # TODO(GYP) if (is_win) { | 681 # TODO(GYP) if (is_win) { |
| 682 # ['incremental_chrome_dll==1', { | 682 # ['incremental_chrome_dll==1', { |
| (...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1680 } | 1680 } |
| 1681 if (use_ozone) { | 1681 if (use_ozone) { |
| 1682 # crbug.com/354036 | 1682 # crbug.com/354036 |
| 1683 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] | 1683 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] |
| 1684 } | 1684 } |
| 1685 if (!enable_plugin_installation) { | 1685 if (!enable_plugin_installation) { |
| 1686 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] | 1686 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] |
| 1687 } | 1687 } |
| 1688 } | 1688 } |
| 1689 } | 1689 } |
| OLD | NEW |