Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1070253002: Allow widevinecdmadapter to be built in Chromium with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change todos Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/BUILD.gn ('k') | third_party/widevine/cdm/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 if (enable_supervised_users) { 962 if (enable_supervised_users) {
963 sources += rebase_path( 963 sources += rebase_path(
964 chrome_tests_gypi_values.chrome_browser_tests_supervised_user_sour ces, 964 chrome_tests_gypi_values.chrome_browser_tests_supervised_user_sour ces,
965 ".", 965 ".",
966 "//chrome") 966 "//chrome")
967 } 967 }
968 if (enable_pepper_cdms) { 968 if (enable_pepper_cdms) {
969 # Runtime dependencies. 969 # Runtime dependencies.
970 data_deps += [ 970 data_deps += [
971 "//media/cdm/ppapi:clearkeycdmadapter", 971 "//media/cdm/ppapi:clearkeycdmadapter",
972 "//third_party/widevine/cdm:adapter", 972 "//third_party/widevine/cdm:widevinecdmadapter",
973 ] 973 ]
974 } 974 }
975 if (!enable_print_preview) { 975 if (!enable_print_preview) {
976 sources -= [ 976 sources -= [
977 "../browser/extensions/api/cloud_print_private/cloud_print_private_apite st.cc", 977 "../browser/extensions/api/cloud_print_private/cloud_print_private_apite st.cc",
978 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc" , 978 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc" ,
979 "../browser/printing/cloud_print/test/cloud_print_proxy_process_browsert est.cc", 979 "../browser/printing/cloud_print/test/cloud_print_proxy_process_browsert est.cc",
980 "../browser/printing/print_preview_dialog_controller_browsertest.cc", 980 "../browser/printing/print_preview_dialog_controller_browsertest.cc",
981 "../browser/printing/print_preview_pdf_generated_browsertest.cc", 981 "../browser/printing/print_preview_pdf_generated_browsertest.cc",
982 "../browser/service_process/service_process_control_browsertest.cc", 982 "../browser/service_process/service_process_control_browsertest.cc",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 deps = [ 1154 deps = [
1155 "//base/test:test_support_perf", 1155 "//base/test:test_support_perf",
1156 "//testing/gtest", 1156 "//testing/gtest",
1157 "//testing/perf", 1157 "//testing/perf",
1158 "//third_party/widevine/cdm:version_h", 1158 "//third_party/widevine/cdm:version_h",
1159 ] 1159 ]
1160 1160
1161 if (enable_pepper_cdms) { 1161 if (enable_pepper_cdms) {
1162 data_deps = [ 1162 data_deps = [
1163 "//media/cdm/ppapi:clearkeycdmadapter", 1163 "//media/cdm/ppapi:clearkeycdmadapter",
1164 "//third_party/widevine/cdm:adapter", 1164 "//third_party/widevine/cdm:widevinecdmadapter",
1165 ] 1165 ]
1166 } 1166 }
1167 } 1167 }
1168 1168
1169 unit_gypi_values = exec_script("//build/gypi_to_gn.py", 1169 unit_gypi_values = exec_script("//build/gypi_to_gn.py",
1170 [ rebase_path("../chrome_tests_unit.gypi") ], 1170 [ rebase_path("../chrome_tests_unit.gypi") ],
1171 "scope", 1171 "scope",
1172 [ "../chrome_tests_unit.gypi" ]) 1172 [ "../chrome_tests_unit.gypi" ])
1173 1173
1174 test("unit_tests") { 1174 test("unit_tests") {
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 } 1748 }
1749 1749
1750 if (cld_version == 0 || cld_version == 2) { 1750 if (cld_version == 0 || cld_version == 2) {
1751 # Use whatever CLD2 data access mode that the 1751 # Use whatever CLD2 data access mode that the
1752 # application embedder is using. 1752 # application embedder is using.
1753 deps += [ "//third_party/cld_2:cld2_platform_impl" ] 1753 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
1754 } 1754 }
1755 } 1755 }
1756 } 1756 }
1757 } 1757 }
OLDNEW
« no previous file with comments | « chrome/BUILD.gn ('k') | third_party/widevine/cdm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698