| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "../public/test/mock_download_manager.cc", | 81 "../public/test/mock_download_manager.cc", |
| 82 "../public/test/mock_download_manager.h", | 82 "../public/test/mock_download_manager.h", |
| 83 "../public/test/mock_notification_observer.cc", | 83 "../public/test/mock_notification_observer.cc", |
| 84 "../public/test/mock_notification_observer.h", | 84 "../public/test/mock_notification_observer.h", |
| 85 "../public/test/mock_render_process_host.cc", | 85 "../public/test/mock_render_process_host.cc", |
| 86 "../public/test/mock_render_process_host.h", | 86 "../public/test/mock_render_process_host.h", |
| 87 "../public/test/mock_render_thread.cc", | 87 "../public/test/mock_render_thread.cc", |
| 88 "../public/test/mock_render_thread.h", | 88 "../public/test/mock_render_thread.h", |
| 89 "../public/test/mock_resource_context.cc", | 89 "../public/test/mock_resource_context.cc", |
| 90 "../public/test/mock_resource_context.h", | 90 "../public/test/mock_resource_context.h", |
| 91 "../public/test/navigation_handle_observer.cc", |
| 92 "../public/test/navigation_handle_observer.h", |
| 91 "../public/test/navigation_simulator.cc", | 93 "../public/test/navigation_simulator.cc", |
| 92 "../public/test/navigation_simulator.h", | 94 "../public/test/navigation_simulator.h", |
| 93 "../public/test/ppapi_test_utils.cc", | 95 "../public/test/ppapi_test_utils.cc", |
| 94 "../public/test/ppapi_test_utils.h", | 96 "../public/test/ppapi_test_utils.h", |
| 95 "../public/test/render_view_test.cc", | 97 "../public/test/render_view_test.cc", |
| 96 "../public/test/render_view_test.h", | 98 "../public/test/render_view_test.h", |
| 97 "../public/test/test_browser_context.cc", | 99 "../public/test/test_browser_context.cc", |
| 98 "../public/test/test_browser_context.h", | 100 "../public/test/test_browser_context.h", |
| 99 "../public/test/test_browser_thread.cc", | 101 "../public/test/test_browser_thread.cc", |
| 100 "../public/test/test_browser_thread.h", | 102 "../public/test/test_browser_thread.h", |
| (...skipping 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1836 if (is_android) { | 1838 if (is_android) { |
| 1837 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1839 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1838 } | 1840 } |
| 1839 } | 1841 } |
| 1840 | 1842 |
| 1841 group("fuzzers") { | 1843 group("fuzzers") { |
| 1842 deps = [ | 1844 deps = [ |
| 1843 "//content/test/fuzzer", | 1845 "//content/test/fuzzer", |
| 1844 ] | 1846 ] |
| 1845 } | 1847 } |
| OLD | NEW |