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

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

Issue 921953002: Split apart the PPAPI GN targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component 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/browser/ui/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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 #'../components/nacl.gyp:nacl', TODO(GYP) 70 #'../components/nacl.gyp:nacl', TODO(GYP)
71 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) 71 #'../components/nacl.gyp:nacl_renderer', TODO(GYP)
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:ppapi_host", 80 "//ppapi/host",
81 "//ppapi:ppapi_ipc", 81 "//ppapi/proxy",
82 "//ppapi:ppapi_proxy", 82 "//ppapi/proxy:ipc",
83 "//ppapi:ppapi_shared", 83 "//ppapi/shared_impl",
84 ] 84 ]
85 } 85 }
86 86
87 if (safe_browsing_mode == 1) { 87 if (safe_browsing_mode == 1) {
88 sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources, 88 sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources,
89 ".", 89 ".",
90 "..") 90 "..")
91 sources += 91 sources +=
92 rebase_path(gypi_values.chrome_renderer_basic_safe_browsing_sources, 92 rebase_path(gypi_values.chrome_renderer_basic_safe_browsing_sources,
93 ".", 93 ".",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 deps += [ "//chrome/service" ] 193 deps += [ "//chrome/service" ]
194 } 194 }
195 195
196 if (enable_webrtc) { 196 if (enable_webrtc) {
197 sources += [ 197 sources += [
198 "media/mock_webrtc_logging_message_filter.cc", 198 "media/mock_webrtc_logging_message_filter.cc",
199 "media/mock_webrtc_logging_message_filter.h", 199 "media/mock_webrtc_logging_message_filter.h",
200 ] 200 ]
201 } 201 }
202 } 202 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698