| 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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 ".", | 1344 ".", |
| 1345 "//chrome") | 1345 "//chrome") |
| 1346 } | 1346 } |
| 1347 if (enable_supervised_users) { | 1347 if (enable_supervised_users) { |
| 1348 sources += rebase_path( | 1348 sources += rebase_path( |
| 1349 chrome_tests_gypi_values.chrome_browser_tests_supervised_user_sour
ces, | 1349 chrome_tests_gypi_values.chrome_browser_tests_supervised_user_sour
ces, |
| 1350 ".", | 1350 ".", |
| 1351 "//chrome") | 1351 "//chrome") |
| 1352 } | 1352 } |
| 1353 if (enable_pepper_cdms) { | 1353 if (enable_pepper_cdms) { |
| 1354 sources += [ |
| 1355 "../browser/media/pepper_cdm_test_helper.cc", |
| 1356 "../browser/media/pepper_cdm_test_helper.h", |
| 1357 ] |
| 1358 |
| 1354 # Runtime dependencies. | 1359 # Runtime dependencies. |
| 1355 data_deps += [ | 1360 data_deps += [ |
| 1356 "//media/cdm/ppapi:clearkeycdmadapter", | 1361 "//media/cdm/ppapi:clearkeycdmadapter", |
| 1357 "//third_party/widevine/cdm:widevinecdmadapter", | 1362 "//third_party/widevine/cdm:widevinecdmadapter", |
| 1358 ] | 1363 ] |
| 1359 } | 1364 } |
| 1360 if (!enable_print_preview) { | 1365 if (!enable_print_preview) { |
| 1361 sources -= [ | 1366 sources -= [ |
| 1362 "../browser/extensions/api/cloud_print_private/cloud_print_private_apite
st.cc", | 1367 "../browser/extensions/api/cloud_print_private/cloud_print_private_apite
st.cc", |
| 1363 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc"
, | 1368 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc"
, |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2383 if (is_android) { | 2388 if (is_android) { |
| 2384 android_library("unit_tests_java") { | 2389 android_library("unit_tests_java") { |
| 2385 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2390 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2386 deps = [ | 2391 deps = [ |
| 2387 "//base:base_java", | 2392 "//base:base_java", |
| 2388 "//chrome/android:chrome_java", | 2393 "//chrome/android:chrome_java", |
| 2389 "//content/public/android:content_java", | 2394 "//content/public/android:content_java", |
| 2390 ] | 2395 ] |
| 2391 } | 2396 } |
| 2392 } | 2397 } |
| OLD | NEW |