| 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 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1286 "//ppapi/native_client:irt", | 1286 "//ppapi/native_client:irt", |
| 1287 ] | 1287 ] |
| 1288 } | 1288 } |
| 1289 | 1289 |
| 1290 deps += [ "//chrome/browser/chromeos:test_support" ] | 1290 deps += [ "//chrome/browser/chromeos:test_support" ] |
| 1291 } | 1291 } |
| 1292 | 1292 |
| 1293 # TODO(jbudorick): In progress. See crbug.com/611756 | 1293 # TODO(jbudorick): In progress. See crbug.com/611756 |
| 1294 if (is_android) { | 1294 if (is_android) { |
| 1295 deps += [ | 1295 deps += [ |
| 1296 "//chrome/android:app_globals_java", |
| 1296 "//chrome/android:chrome_java", | 1297 "//chrome/android:chrome_java", |
| 1297 "//v8:v8_external_startup_data_assets", | 1298 "//v8:v8_external_startup_data_assets", |
| 1298 ] | 1299 ] |
| 1299 | 1300 |
| 1300 enable_multidex = true | 1301 enable_multidex = true |
| 1301 } else { # Not Android. | 1302 } else { # Not Android. |
| 1302 sources += [ | 1303 sources += [ |
| 1303 # The list of sources which is only used by chrome browser tests on | 1304 # The list of sources which is only used by chrome browser tests on |
| 1304 # desktop platforms. | 1305 # desktop platforms. |
| 1305 "../../apps/app_restore_service_browsertest.cc", | 1306 "../../apps/app_restore_service_browsertest.cc", |
| (...skipping 3800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5106 "//chrome/common", | 5107 "//chrome/common", |
| 5107 "//mojo/edk/test:test_support", | 5108 "//mojo/edk/test:test_support", |
| 5108 ] | 5109 ] |
| 5109 } | 5110 } |
| 5110 | 5111 |
| 5111 if (is_android) { | 5112 if (is_android) { |
| 5112 android_library("unit_tests_java") { | 5113 android_library("unit_tests_java") { |
| 5113 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 5114 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 5114 deps = [ | 5115 deps = [ |
| 5115 "//base:base_java", | 5116 "//base:base_java", |
| 5117 "//chrome/android:app_globals_java", |
| 5116 "//chrome/android:chrome_java", | 5118 "//chrome/android:chrome_java", |
| 5117 "//content/public/android:content_java", | 5119 "//content/public/android:content_java", |
| 5118 ] | 5120 ] |
| 5119 } | 5121 } |
| 5120 } | 5122 } |
| 5121 | 5123 |
| 5122 if (is_chromeos && enable_package_mash_services) { | 5124 if (is_chromeos && enable_package_mash_services) { |
| 5123 # TODO(GYP_GONE): Delete this after we've converted everything to GN. | 5125 # TODO(GYP_GONE): Delete this after we've converted everything to GN. |
| 5124 # The _run targets exist only for compatibility w/ GYP. | 5126 # The _run targets exist only for compatibility w/ GYP. |
| 5125 group("mash_browser_tests_run") { | 5127 group("mash_browser_tests_run") { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5178 } | 5180 } |
| 5179 | 5181 |
| 5180 if (is_win) { | 5182 if (is_win) { |
| 5181 loadable_module("conflicts_dll") { | 5183 loadable_module("conflicts_dll") { |
| 5182 testonly = true | 5184 testonly = true |
| 5183 sources = [ | 5185 sources = [ |
| 5184 "conflicts/conflicts_dll.cc", | 5186 "conflicts/conflicts_dll.cc", |
| 5185 ] | 5187 ] |
| 5186 } | 5188 } |
| 5187 } | 5189 } |
| OLD | NEW |