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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1597 ] | 1602 ] |
1598 | 1603 |
1599 deps = [ | 1604 deps = [ |
1600 "//base/test:test_support_perf", | 1605 "//base/test:test_support_perf", |
1601 "//testing/gtest", | 1606 "//testing/gtest", |
1602 "//testing/perf", | 1607 "//testing/perf", |
1603 "//third_party/widevine/cdm:version_h", | 1608 "//third_party/widevine/cdm:version_h", |
1604 ] | 1609 ] |
1605 | 1610 |
1606 if (enable_pepper_cdms) { | 1611 if (enable_pepper_cdms) { |
1607 deps += [ | |
1608 ":test_support", | |
1609 "//media:cdm_paths", | |
1610 ] | |
1611 data_deps = [ | 1612 data_deps = [ |
1612 "//media/cdm/ppapi:clearkeycdmadapter", | 1613 "//media/cdm/ppapi:clearkeycdmadapter", |
1613 "//third_party/widevine/cdm:widevinecdmadapter", | 1614 "//third_party/widevine/cdm:widevinecdmadapter", |
1614 ] | 1615 ] |
1615 } | 1616 } |
1616 | 1617 |
1617 # This target should not require the Chrome executable to run. | 1618 # This target should not require the Chrome executable to run. |
1618 assert_no_deps = [ "//chrome" ] | 1619 assert_no_deps = [ "//chrome" ] |
1619 } | 1620 } |
1620 } | 1621 } |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2387 if (is_android) { | 2388 if (is_android) { |
2388 android_library("unit_tests_java") { | 2389 android_library("unit_tests_java") { |
2389 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" ] |
2390 deps = [ | 2391 deps = [ |
2391 "//base:base_java", | 2392 "//base:base_java", |
2392 "//chrome/android:chrome_java", | 2393 "//chrome/android:chrome_java", |
2393 "//content/public/android:content_java", | 2394 "//content/public/android:content_java", |
2394 ] | 2395 ] |
2395 } | 2396 } |
2396 } | 2397 } |
OLD | NEW |