| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//testing/gmock", | 123 "//testing/gmock", |
| 124 "//testing/gtest", | 124 "//testing/gtest", |
| 125 "//third_party/zlib", | 125 "//third_party/zlib", |
| 126 "//ui/gfx:test_support", | 126 "//ui/gfx:test_support", |
| 127 "//ui/message_center:test_support", | 127 "//ui/message_center:test_support", |
| 128 ] | 128 ] |
| 129 | 129 |
| 130 if (!is_ios) { | 130 if (!is_ios) { |
| 131 public_deps += [ | 131 public_deps += [ |
| 132 "//chrome/child", | 132 "//chrome/child", |
| 133 "//chrome/plugin", | |
| 134 "//chrome/renderer", | 133 "//chrome/renderer", |
| 135 "//chrome/utility", | 134 "//chrome/utility", |
| 136 "//components/autofill/core/browser:test_support", | 135 "//components/autofill/core/browser:test_support", |
| 137 "//components/captive_portal:test_support", | 136 "//components/captive_portal:test_support", |
| 138 "//components/gcm_driver/crypto:test_support", | 137 "//components/gcm_driver/crypto:test_support", |
| 139 "//components/guest_view/browser:test_support", | 138 "//components/guest_view/browser:test_support", |
| 140 "//components/infobars/core", | 139 "//components/infobars/core", |
| 141 "//components/sessions:test_support", | 140 "//components/sessions:test_support", |
| 142 "//components/web_resource:test_support", | 141 "//components/web_resource:test_support", |
| 143 "//content/public/child", | 142 "//content/public/child", |
| 144 "//content/public/common", | 143 "//content/public/common", |
| 145 "//content/public/plugin", | |
| 146 "//content/public/renderer", | 144 "//content/public/renderer", |
| 147 "//content/public/utility", | 145 "//content/public/utility", |
| 148 "//google_apis:test_support", | 146 "//google_apis:test_support", |
| 149 "//ipc:test_support", | 147 "//ipc:test_support", |
| 150 "//media:test_support", | 148 "//media:test_support", |
| 151 "//sql:test_support", | 149 "//sql:test_support", |
| 152 "//third_party/leveldatabase", | 150 "//third_party/leveldatabase", |
| 153 "//ui/base", | 151 "//ui/base", |
| 154 "//ui/events:events_base", | 152 "//ui/events:events_base", |
| 155 "//ui/gl", | 153 "//ui/gl", |
| (...skipping 2107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2263 if (is_android) { | 2261 if (is_android) { |
| 2264 android_library("unit_tests_java") { | 2262 android_library("unit_tests_java") { |
| 2265 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2263 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2266 deps = [ | 2264 deps = [ |
| 2267 "//base:base_java", | 2265 "//base:base_java", |
| 2268 "//chrome/android:chrome_java", | 2266 "//chrome/android:chrome_java", |
| 2269 "//content/public/android:content_java", | 2267 "//content/public/android:content_java", |
| 2270 ] | 2268 ] |
| 2271 } | 2269 } |
| 2272 } | 2270 } |
| OLD | NEW |