| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "../public/test/browser_side_navigation_test_utils.h", | 48 "../public/test/browser_side_navigation_test_utils.h", |
| 49 "../public/test/browser_test.h", | 49 "../public/test/browser_test.h", |
| 50 "../public/test/browser_test_base.cc", | 50 "../public/test/browser_test_base.cc", |
| 51 "../public/test/browser_test_base.h", | 51 "../public/test/browser_test_base.h", |
| 52 "../public/test/browser_test_utils.cc", | 52 "../public/test/browser_test_utils.cc", |
| 53 "../public/test/browser_test_utils.h", | 53 "../public/test/browser_test_utils.h", |
| 54 "../public/test/content_test_suite_base.cc", | 54 "../public/test/content_test_suite_base.cc", |
| 55 "../public/test/content_test_suite_base.h", | 55 "../public/test/content_test_suite_base.h", |
| 56 "../public/test/download_test_observer.cc", | 56 "../public/test/download_test_observer.cc", |
| 57 "../public/test/download_test_observer.h", | 57 "../public/test/download_test_observer.h", |
| 58 "../public/test/fake_download_item.cc", |
| 59 "../public/test/fake_download_item.h", |
| 58 "../public/test/fake_speech_recognition_manager.cc", | 60 "../public/test/fake_speech_recognition_manager.cc", |
| 59 "../public/test/fake_speech_recognition_manager.h", | 61 "../public/test/fake_speech_recognition_manager.h", |
| 60 "../public/test/find_test_utils.cc", | 62 "../public/test/find_test_utils.cc", |
| 61 "../public/test/find_test_utils.h", | 63 "../public/test/find_test_utils.h", |
| 62 "../public/test/frame_load_waiter.cc", | 64 "../public/test/frame_load_waiter.cc", |
| 63 "../public/test/frame_load_waiter.h", | 65 "../public/test/frame_load_waiter.h", |
| 64 "../public/test/javascript_test_observer.cc", | 66 "../public/test/javascript_test_observer.cc", |
| 65 "../public/test/javascript_test_observer.h", | 67 "../public/test/javascript_test_observer.h", |
| 66 "../public/test/memory_coordinator_test_utils.cc", | 68 "../public/test/memory_coordinator_test_utils.cc", |
| 67 "../public/test/memory_coordinator_test_utils.h", | 69 "../public/test/memory_coordinator_test_utils.h", |
| (...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1829 if (is_android) { | 1831 if (is_android) { |
| 1830 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1832 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1831 } | 1833 } |
| 1832 } | 1834 } |
| 1833 | 1835 |
| 1834 group("fuzzers") { | 1836 group("fuzzers") { |
| 1835 deps = [ | 1837 deps = [ |
| 1836 "//content/test/fuzzer", | 1838 "//content/test/fuzzer", |
| 1837 ] | 1839 ] |
| 1838 } | 1840 } |
| OLD | NEW |