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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "//components/resources:components_resources", | 91 "//components/resources:components_resources", |
92 "//components/search", | 92 "//components/search", |
93 "//components/search_engines", | 93 "//components/search_engines", |
94 "//components/search_provider_logos", | 94 "//components/search_provider_logos", |
95 "//components/sessions", | 95 "//components/sessions", |
96 "//components/signin/core/browser", | 96 "//components/signin/core/browser", |
97 "//components/startup_metric_utils", | 97 "//components/startup_metric_utils", |
98 "//components/strings", | 98 "//components/strings", |
99 "//components/sync_driver", | 99 "//components/sync_driver", |
100 "//components/tracing", | 100 "//components/tracing", |
| 101 "//components/tracing:startup_tracing", |
101 "//components/translate/content/browser", | 102 "//components/translate/content/browser", |
102 "//components/translate/content/common", | 103 "//components/translate/content/common", |
103 "//components/translate/content/renderer", | 104 "//components/translate/content/renderer", |
104 "//components/translate/core/browser", | 105 "//components/translate/core/browser", |
105 "//components/translate/core/common", | 106 "//components/translate/core/common", |
106 "//components/ui/zoom:ui_zoom", | 107 "//components/ui/zoom:ui_zoom", |
107 "//components/undo", | 108 "//components/undo", |
108 "//components/update_client", | 109 "//components/update_client", |
109 "//components/url_fixer", | 110 "//components/url_fixer", |
110 "//components/url_matcher", | 111 "//components/url_matcher", |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 "//content/test:test_support", | 391 "//content/test:test_support", |
391 "//device/bluetooth", | 392 "//device/bluetooth", |
392 "//testing/gmock", | 393 "//testing/gmock", |
393 "//testing/gtest", | 394 "//testing/gtest", |
394 "//ui/base", | 395 "//ui/base", |
395 ] | 396 ] |
396 | 397 |
397 data_deps = [ ":components_tests_pak" ] | 398 data_deps = [ ":components_tests_pak" ] |
398 | 399 |
399 if (is_android) { | 400 if (is_android) { |
400 sources += [ | 401 sources += [ "test/android/browsertests_apk/components_browser_tests_jni_onl
oad.cc" ] |
401 "test/android/browsertests_apk/components_browser_tests_jni_onload.cc", | |
402 ] | |
403 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ] | 402 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ] |
404 deps += [ "//testing/android/native_test:native_test_support" ] | 403 deps += [ "//testing/android/native_test:native_test_support" ] |
405 use_launcher = false | 404 use_launcher = false |
406 isolate_file = "components_browsertests.isolate" | 405 isolate_file = "components_browsertests.isolate" |
407 } | 406 } |
408 | 407 |
409 if (is_linux) { | 408 if (is_linux) { |
410 # content_extractor_browsertest is a standalone content extraction tool buil
t as | 409 # content_extractor_browsertest is a standalone content extraction tool buil
t as |
411 # a MANUAL component_browsertest. | 410 # a MANUAL component_browsertest. |
412 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] | 411 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] |
(...skipping 15 matching lines...) Expand all Loading... |
428 | 427 |
429 deps = [ | 428 deps = [ |
430 "//base", | 429 "//base", |
431 "//base/test:test_support_perf", | 430 "//base/test:test_support_perf", |
432 "//testing/gtest", | 431 "//testing/gtest", |
433 "//testing/perf", | 432 "//testing/perf", |
434 "//content/test:test_support", | 433 "//content/test:test_support", |
435 "//components/visitedlink/browser", | 434 "//components/visitedlink/browser", |
436 ] | 435 ] |
437 } | 436 } |
OLD | NEW |