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("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
(...skipping 30 matching lines...) Expand all Loading... |
41 "../public/test/content_test_suite_base.cc", | 41 "../public/test/content_test_suite_base.cc", |
42 "../public/test/content_test_suite_base.h", | 42 "../public/test/content_test_suite_base.h", |
43 "../public/test/download_test_observer.cc", | 43 "../public/test/download_test_observer.cc", |
44 "../public/test/download_test_observer.h", | 44 "../public/test/download_test_observer.h", |
45 "../public/test/fake_speech_recognition_manager.cc", | 45 "../public/test/fake_speech_recognition_manager.cc", |
46 "../public/test/fake_speech_recognition_manager.h", | 46 "../public/test/fake_speech_recognition_manager.h", |
47 "../public/test/frame_load_waiter.cc", | 47 "../public/test/frame_load_waiter.cc", |
48 "../public/test/frame_load_waiter.h", | 48 "../public/test/frame_load_waiter.h", |
49 "../public/test/javascript_test_observer.cc", | 49 "../public/test/javascript_test_observer.cc", |
50 "../public/test/javascript_test_observer.h", | 50 "../public/test/javascript_test_observer.h", |
| 51 "../public/test/memory_coordinator_test_utils.cc", |
| 52 "../public/test/memory_coordinator_test_utils.h", |
51 "../public/test/mock_blob_url_request_context.cc", | 53 "../public/test/mock_blob_url_request_context.cc", |
52 "../public/test/mock_blob_url_request_context.h", | 54 "../public/test/mock_blob_url_request_context.h", |
53 "../public/test/mock_download_item.cc", | 55 "../public/test/mock_download_item.cc", |
54 "../public/test/mock_download_item.h", | 56 "../public/test/mock_download_item.h", |
55 "../public/test/mock_download_manager.cc", | 57 "../public/test/mock_download_manager.cc", |
56 "../public/test/mock_download_manager.h", | 58 "../public/test/mock_download_manager.h", |
57 "../public/test/mock_notification_observer.cc", | 59 "../public/test/mock_notification_observer.cc", |
58 "../public/test/mock_notification_observer.h", | 60 "../public/test/mock_notification_observer.h", |
59 "../public/test/mock_render_process_host.cc", | 61 "../public/test/mock_render_process_host.cc", |
60 "../public/test/mock_render_process_host.h", | 62 "../public/test/mock_render_process_host.h", |
(...skipping 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1707 if (is_android) { | 1709 if (is_android) { |
1708 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1710 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1709 } | 1711 } |
1710 } | 1712 } |
1711 | 1713 |
1712 group("fuzzers") { | 1714 group("fuzzers") { |
1713 deps = [ | 1715 deps = [ |
1714 "//content/test/fuzzer", | 1716 "//content/test/fuzzer", |
1715 ] | 1717 ] |
1716 } | 1718 } |
OLD | NEW |