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

Unified Diff: chrome/test/BUILD.gn

Issue 949233003: Fix official build in GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@random
Patch Set: remove ppapi dep Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/version.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index e905563cf05ce7938f1b2ee737e193682df254c9..4bc1d9b67616e94e993a5186dde45783fd814623 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -959,7 +959,7 @@ if (!is_android && (!is_win || link_chrome_on_windows)) {
# Runtime dependencies.
data_deps += [
"//media/cdm/ppapi:clearkeycdmadapter",
- #'../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', TODO(GYP)
+ "//third_party/widevine/cdm:adapter",
]
}
if (!enable_print_preview) {
@@ -1150,14 +1150,12 @@ if (!is_android && (!is_win || link_chrome_on_windows)) {
"//third_party/widevine/cdm:version_h",
]
- # TODO(GYP) CDM adapter stuff.
- #if (enable_pepper_cdms) {
- # deps += [
- # "//media/cdm/ppapi:clearkeycdmadapter",
- # "//ppapi/cpp",
- # "//third_party/widevine/cdm:adapter",
- # ]
- #}
+ if (enable_pepper_cdms) {
+ data_deps = [
+ "//media/cdm/ppapi:clearkeycdmadapter",
+ "//third_party/widevine/cdm:adapter",
+ ]
+ }
}
unit_gypi_values = exec_script("//build/gypi_to_gn.py",
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/version.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698