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

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

Issue 877553008: Land prep work to enable NaCl in the Linux x64 GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yet more feedback 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 unified diff | Download patch
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/test/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/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 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../chrome_renderer.gypi") ], 9 [ rebase_path("../chrome_renderer.gypi") ],
10 "scope", 10 "scope",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "//third_party/icu", 60 "//third_party/icu",
61 "//third_party/npapi", 61 "//third_party/npapi",
62 "//third_party/re2", 62 "//third_party/re2",
63 "//third_party/widevine/cdm:version_h", 63 "//third_party/widevine/cdm:version_h",
64 "//ui/surface", 64 "//ui/surface",
65 "//v8:v8", 65 "//v8:v8",
66 ] 66 ]
67 67
68 if (enable_nacl) { 68 if (enable_nacl) {
69 deps += [ 69 deps += [
70 #'../components/nacl.gyp:nacl', TODO(GYP) 70 "//components/nacl",
71 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) 71 "//components/nacl:nacl_renderer",
72 ] 72 ]
73 } 73 }
74 74
75 if (enable_plugins) { 75 if (enable_plugins) {
76 sources += 76 sources +=
77 rebase_path(gypi_values.chrome_renderer_plugin_sources, ".", "..") 77 rebase_path(gypi_values.chrome_renderer_plugin_sources, ".", "..")
78 deps += [ 78 deps += [
79 "//components/pdf/renderer", 79 "//components/pdf/renderer",
80 "//ppapi/host", 80 "//ppapi/host",
81 "//ppapi/proxy", 81 "//ppapi/proxy",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 deps += [ "//chrome/service" ] 196 deps += [ "//chrome/service" ]
197 } 197 }
198 198
199 if (enable_webrtc) { 199 if (enable_webrtc) {
200 sources += [ 200 sources += [
201 "media/mock_webrtc_logging_message_filter.cc", 201 "media/mock_webrtc_logging_message_filter.cc",
202 "media/mock_webrtc_logging_message_filter.h", 202 "media/mock_webrtc_logging_message_filter.h",
203 ] 203 ]
204 } 204 }
205 } 205 }
OLDNEW
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698