| 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/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 5101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5112 | 5112 |
| 5113 public_deps = [ | 5113 public_deps = [ |
| 5114 ":test_support", | 5114 ":test_support", |
| 5115 "//base", | 5115 "//base", |
| 5116 "//chrome:resources", | 5116 "//chrome:resources", |
| 5117 "//chrome:strings", | 5117 "//chrome:strings", |
| 5118 "//chrome/browser", | 5118 "//chrome/browser", |
| 5119 "//chrome/common", | 5119 "//chrome/common", |
| 5120 "//mojo/edk/test:test_support", | 5120 "//mojo/edk/test:test_support", |
| 5121 ] | 5121 ] |
| 5122 |
| 5123 if (is_win) { |
| 5124 deps = [ |
| 5125 "//chrome/install_static/test:test_support", |
| 5126 ] |
| 5127 } |
| 5122 } | 5128 } |
| 5123 | 5129 |
| 5124 if (is_android) { | 5130 if (is_android) { |
| 5125 android_library("unit_tests_java") { | 5131 android_library("unit_tests_java") { |
| 5126 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 5132 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 5127 deps = [ | 5133 deps = [ |
| 5128 "//base:base_java", | 5134 "//base:base_java", |
| 5129 "//chrome/android:chrome_java", | 5135 "//chrome/android:chrome_java", |
| 5130 "//content/public/android:content_java", | 5136 "//content/public/android:content_java", |
| 5131 ] | 5137 ] |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5191 } | 5197 } |
| 5192 | 5198 |
| 5193 if (is_win) { | 5199 if (is_win) { |
| 5194 loadable_module("conflicts_dll") { | 5200 loadable_module("conflicts_dll") { |
| 5195 testonly = true | 5201 testonly = true |
| 5196 sources = [ | 5202 sources = [ |
| 5197 "conflicts/conflicts_dll.cc", | 5203 "conflicts/conflicts_dll.cc", |
| 5198 ] | 5204 ] |
| 5199 } | 5205 } |
| 5200 } | 5206 } |
| OLD | NEW |