| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 "//build/config/compiler:no_size_t_to_int_warning", | 686 "//build/config/compiler:no_size_t_to_int_warning", |
| 687 ] | 687 ] |
| 688 | 688 |
| 689 deps = [ | 689 deps = [ |
| 690 ":browsertest_support", | 690 ":browsertest_support", |
| 691 ":content_test_mojo_bindings", | 691 ":content_test_mojo_bindings", |
| 692 ":layouttest_support", | 692 ":layouttest_support", |
| 693 ":test_support", | 693 ":test_support", |
| 694 ":web_ui_test_mojo_bindings", | 694 ":web_ui_test_mojo_bindings", |
| 695 "//base/test:test_support", | 695 "//base/test:test_support", |
| 696 "//cc/ipc:interfaces", |
| 696 "//components/discardable_memory/client", | 697 "//components/discardable_memory/client", |
| 697 "//components/discardable_memory/common", | 698 "//components/discardable_memory/common", |
| 698 "//components/discardable_memory/service", | 699 "//components/discardable_memory/service", |
| 699 "//components/payments:payment_app", | 700 "//components/payments:payment_app", |
| 700 "//content:resources", | 701 "//content:resources", |
| 701 "//content/app:both_for_content_tests", | 702 "//content/app:both_for_content_tests", |
| 702 "//content/browser:for_content_tests", | 703 "//content/browser:for_content_tests", |
| 703 "//content/browser/background_sync:background_sync_proto", | 704 "//content/browser/background_sync:background_sync_proto", |
| 704 "//content/child:for_content_tests", | 705 "//content/child:for_content_tests", |
| 705 "//content/gpu", | 706 "//content/gpu", |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1427 | 1428 |
| 1428 deps = [ | 1429 deps = [ |
| 1429 ":content_test_mojo_bindings", | 1430 ":content_test_mojo_bindings", |
| 1430 ":content_unittests_catalog_source", | 1431 ":content_unittests_catalog_source", |
| 1431 ":test_support", | 1432 ":test_support", |
| 1432 "//base/test:test_support", | 1433 "//base/test:test_support", |
| 1433 "//base/third_party/dynamic_annotations", | 1434 "//base/third_party/dynamic_annotations", |
| 1434 "//cc", | 1435 "//cc", |
| 1435 "//cc:test_support", | 1436 "//cc:test_support", |
| 1436 "//cc/ipc", | 1437 "//cc/ipc", |
| 1438 "//cc/ipc:interfaces", |
| 1437 "//cc/surfaces", | 1439 "//cc/surfaces", |
| 1438 "//components/display_compositor", | 1440 "//components/display_compositor", |
| 1439 "//components/leveldb/public/cpp", | 1441 "//components/leveldb/public/cpp", |
| 1440 "//components/payments:payment_app", | 1442 "//components/payments:payment_app", |
| 1441 "//components/payments:payment_request", | 1443 "//components/payments:payment_request", |
| 1442 "//components/rappor:test_support", | 1444 "//components/rappor:test_support", |
| 1443 "//content:resources", | 1445 "//content:resources", |
| 1444 "//content/app:both_for_content_tests", | 1446 "//content/app:both_for_content_tests", |
| 1445 "//content/browser:for_content_tests", | 1447 "//content/browser:for_content_tests", |
| 1446 "//content/browser/cache_storage:cache_storage_proto", | 1448 "//content/browser/cache_storage:cache_storage_proto", |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 if (is_android) { | 1817 if (is_android) { |
| 1816 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1818 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1817 } | 1819 } |
| 1818 } | 1820 } |
| 1819 | 1821 |
| 1820 group("fuzzers") { | 1822 group("fuzzers") { |
| 1821 deps = [ | 1823 deps = [ |
| 1822 "//content/test/fuzzer", | 1824 "//content/test/fuzzer", |
| 1823 ] | 1825 ] |
| 1824 } | 1826 } |
| OLD | NEW |