| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "../public/test/background_sync_test_util.h", | 49 "../public/test/background_sync_test_util.h", |
| 50 "../public/test/browser_side_navigation_test_utils.cc", | 50 "../public/test/browser_side_navigation_test_utils.cc", |
| 51 "../public/test/browser_side_navigation_test_utils.h", | 51 "../public/test/browser_side_navigation_test_utils.h", |
| 52 "../public/test/browser_test.h", | 52 "../public/test/browser_test.h", |
| 53 "../public/test/browser_test_base.cc", | 53 "../public/test/browser_test_base.cc", |
| 54 "../public/test/browser_test_base.h", | 54 "../public/test/browser_test_base.h", |
| 55 "../public/test/browser_test_utils.cc", | 55 "../public/test/browser_test_utils.cc", |
| 56 "../public/test/browser_test_utils.h", | 56 "../public/test/browser_test_utils.h", |
| 57 "../public/test/cache_test_util.cc", | 57 "../public/test/cache_test_util.cc", |
| 58 "../public/test/cache_test_util.h", | 58 "../public/test/cache_test_util.h", |
| 59 "../public/test/cancelling_navigation_throttle.cc", |
| 60 "../public/test/cancelling_navigation_throttle.h", |
| 59 "../public/test/content_test_suite_base.cc", | 61 "../public/test/content_test_suite_base.cc", |
| 60 "../public/test/content_test_suite_base.h", | 62 "../public/test/content_test_suite_base.h", |
| 61 "../public/test/download_test_observer.cc", | 63 "../public/test/download_test_observer.cc", |
| 62 "../public/test/download_test_observer.h", | 64 "../public/test/download_test_observer.h", |
| 63 "../public/test/fake_download_item.cc", | 65 "../public/test/fake_download_item.cc", |
| 64 "../public/test/fake_download_item.h", | 66 "../public/test/fake_download_item.h", |
| 65 "../public/test/fake_speech_recognition_manager.cc", | 67 "../public/test/fake_speech_recognition_manager.cc", |
| 66 "../public/test/fake_speech_recognition_manager.h", | 68 "../public/test/fake_speech_recognition_manager.h", |
| 67 "../public/test/find_test_utils.cc", | 69 "../public/test/find_test_utils.cc", |
| 68 "../public/test/find_test_utils.h", | 70 "../public/test/find_test_utils.h", |
| (...skipping 1768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1837 if (is_android) { | 1839 if (is_android) { |
| 1838 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1840 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1839 } | 1841 } |
| 1840 } | 1842 } |
| 1841 | 1843 |
| 1842 group("fuzzers") { | 1844 group("fuzzers") { |
| 1843 deps = [ | 1845 deps = [ |
| 1844 "//content/test/fuzzer", | 1846 "//content/test/fuzzer", |
| 1845 ] | 1847 ] |
| 1846 } | 1848 } |
| OLD | NEW |