| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "../public/test/navigation_handle_observer.cc", | 93 "../public/test/navigation_handle_observer.cc", |
| 94 "../public/test/navigation_handle_observer.h", | 94 "../public/test/navigation_handle_observer.h", |
| 95 "../public/test/navigation_simulator.cc", | 95 "../public/test/navigation_simulator.cc", |
| 96 "../public/test/navigation_simulator.h", | 96 "../public/test/navigation_simulator.h", |
| 97 "../public/test/ppapi_test_utils.cc", | 97 "../public/test/ppapi_test_utils.cc", |
| 98 "../public/test/ppapi_test_utils.h", | 98 "../public/test/ppapi_test_utils.h", |
| 99 "../public/test/render_view_test.cc", | 99 "../public/test/render_view_test.cc", |
| 100 "../public/test/render_view_test.h", | 100 "../public/test/render_view_test.h", |
| 101 "../public/test/repeated_notification_observer.cc", | 101 "../public/test/repeated_notification_observer.cc", |
| 102 "../public/test/repeated_notification_observer.h", | 102 "../public/test/repeated_notification_observer.h", |
| 103 "../public/test/service_worker_test_helpers.cc", |
| 104 "../public/test/service_worker_test_helpers.h", |
| 103 "../public/test/test_browser_context.cc", | 105 "../public/test/test_browser_context.cc", |
| 104 "../public/test/test_browser_context.h", | 106 "../public/test/test_browser_context.h", |
| 105 "../public/test/test_browser_thread.cc", | 107 "../public/test/test_browser_thread.cc", |
| 106 "../public/test/test_browser_thread.h", | 108 "../public/test/test_browser_thread.h", |
| 107 "../public/test/test_browser_thread_bundle.cc", | 109 "../public/test/test_browser_thread_bundle.cc", |
| 108 "../public/test/test_browser_thread_bundle.h", | 110 "../public/test/test_browser_thread_bundle.h", |
| 109 "../public/test/test_content_client_initializer.cc", | 111 "../public/test/test_content_client_initializer.cc", |
| 110 "../public/test/test_content_client_initializer.h", | 112 "../public/test/test_content_client_initializer.h", |
| 111 "../public/test/test_download_request_handler.cc", | 113 "../public/test/test_download_request_handler.cc", |
| 112 "../public/test/test_download_request_handler.h", | 114 "../public/test/test_download_request_handler.h", |
| (...skipping 1790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1903 if (is_android) { | 1905 if (is_android) { |
| 1904 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1906 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1905 } | 1907 } |
| 1906 } | 1908 } |
| 1907 | 1909 |
| 1908 group("fuzzers") { | 1910 group("fuzzers") { |
| 1909 deps = [ | 1911 deps = [ |
| 1910 "//content/test/fuzzer", | 1912 "//content/test/fuzzer", |
| 1911 ] | 1913 ] |
| 1912 } | 1914 } |
| OLD | NEW |