| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "../public/test/javascript_test_observer.cc", | 56 "../public/test/javascript_test_observer.cc", |
| 57 "../public/test/javascript_test_observer.h", | 57 "../public/test/javascript_test_observer.h", |
| 58 "../public/test/memory_coordinator_test_utils.cc", | 58 "../public/test/memory_coordinator_test_utils.cc", |
| 59 "../public/test/memory_coordinator_test_utils.h", | 59 "../public/test/memory_coordinator_test_utils.h", |
| 60 "../public/test/mock_blob_url_request_context.cc", | 60 "../public/test/mock_blob_url_request_context.cc", |
| 61 "../public/test/mock_blob_url_request_context.h", | 61 "../public/test/mock_blob_url_request_context.h", |
| 62 "../public/test/mock_download_item.cc", | 62 "../public/test/mock_download_item.cc", |
| 63 "../public/test/mock_download_item.h", | 63 "../public/test/mock_download_item.h", |
| 64 "../public/test/mock_download_manager.cc", | 64 "../public/test/mock_download_manager.cc", |
| 65 "../public/test/mock_download_manager.h", | 65 "../public/test/mock_download_manager.h", |
| 66 "../public/test/mock_media_session.cc", |
| 67 "../public/test/mock_media_session.h", |
| 66 "../public/test/mock_notification_observer.cc", | 68 "../public/test/mock_notification_observer.cc", |
| 67 "../public/test/mock_notification_observer.h", | 69 "../public/test/mock_notification_observer.h", |
| 68 "../public/test/mock_render_process_host.cc", | 70 "../public/test/mock_render_process_host.cc", |
| 69 "../public/test/mock_render_process_host.h", | 71 "../public/test/mock_render_process_host.h", |
| 70 "../public/test/mock_render_thread.cc", | 72 "../public/test/mock_render_thread.cc", |
| 71 "../public/test/mock_render_thread.h", | 73 "../public/test/mock_render_thread.h", |
| 72 "../public/test/mock_resource_context.cc", | 74 "../public/test/mock_resource_context.cc", |
| 73 "../public/test/mock_resource_context.h", | 75 "../public/test/mock_resource_context.h", |
| 74 "../public/test/mock_special_storage_policy.cc", | 76 "../public/test/mock_special_storage_policy.cc", |
| 75 "../public/test/mock_special_storage_policy.h", | 77 "../public/test/mock_special_storage_policy.h", |
| (...skipping 1703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1779 if (is_android) { | 1781 if (is_android) { |
| 1780 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1782 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1781 } | 1783 } |
| 1782 } | 1784 } |
| 1783 | 1785 |
| 1784 group("fuzzers") { | 1786 group("fuzzers") { |
| 1785 deps = [ | 1787 deps = [ |
| 1786 "//content/test/fuzzer", | 1788 "//content/test/fuzzer", |
| 1787 ] | 1789 ] |
| 1788 } | 1790 } |
| OLD | NEW |