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

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

Issue 2411433002: Move ENABLE_PEPPER_CDMS to a buildflag header. (Closed)
Patch Set: fix Created 4 years, 2 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 7
8 grit("resources") { 8 grit("resources") {
9 source = "resources/renderer_resources.grd" 9 source = "resources/renderer_resources.grd"
10 use_qualified_include = true 10 use_qualified_include = true
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 "//content/public/renderer", 118 "//content/public/renderer",
119 "//media", 119 "//media",
120 "//net", 120 "//net",
121 "//skia", 121 "//skia",
122 "//storage/common", 122 "//storage/common",
123 "//third_party/WebKit/public:blink", 123 "//third_party/WebKit/public:blink",
124 "//third_party/WebKit/public:image_resources", 124 "//third_party/WebKit/public:image_resources",
125 "//third_party/WebKit/public:resources", 125 "//third_party/WebKit/public:resources",
126 "//third_party/icu", 126 "//third_party/icu",
127 "//third_party/re2", 127 "//third_party/re2",
128 "//third_party/widevine/cdm:cdm_features",
128 "//third_party/widevine/cdm:version_h", 129 "//third_party/widevine/cdm:version_h",
129 "//ui/surface", 130 "//ui/surface",
130 "//v8:v8", 131 "//v8:v8",
131 ] 132 ]
132 133
133 configs += [ "//build/config/compiler:wexit_time_destructors" ] 134 configs += [ "//build/config/compiler:wexit_time_destructors" ]
134 135
135 if (enable_nacl) { 136 if (enable_nacl) {
136 deps += [ 137 deps += [
137 "//components/nacl/loader", 138 "//components/nacl/loader",
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 ] 384 ]
384 } 385 }
385 386
386 if (is_android) { 387 if (is_android) {
387 sources -= [ 388 sources -= [
388 "safe_browsing/mock_feature_extractor_clock.cc", 389 "safe_browsing/mock_feature_extractor_clock.cc",
389 "safe_browsing/mock_feature_extractor_clock.h", 390 "safe_browsing/mock_feature_extractor_clock.h",
390 ] 391 ]
391 } 392 }
392 } 393 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698