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

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

Issue 382663002: Add components and CLD to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/BUILD.gn ('k') | components/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( 8 gypi_values = exec_script(
9 "//build/gypi_to_gn.py", 9 "//build/gypi_to_gn.py",
10 [ rebase_path("../chrome_renderer.gypi") ], 10 [ rebase_path("../chrome_renderer.gypi") ],
(...skipping 10 matching lines...) Expand all
21 sources = rebase_path(gypi_values.chrome_renderer_sources, ".", "..") 21 sources = rebase_path(gypi_values.chrome_renderer_sources, ".", "..")
22 22
23 defines = [] 23 defines = []
24 24
25 deps = [ 25 deps = [
26 "//base/allocator", 26 "//base/allocator",
27 "//chrome/common", 27 "//chrome/common",
28 "//chrome/common/net", 28 "//chrome/common/net",
29 "//chrome:resources", 29 "//chrome:resources",
30 "//chrome:strings", 30 "//chrome:strings",
31 "//third_party/re2", 31 "//components/autofill/content/renderer",
32 #"../components/components.gyp:autofill_content_renderer", TODO(GYP) 32 "//components/data_reduction_proxy/common",
33 #"../components/components.gyp:cdm_renderer", TODO(GYP) 33 "//components/translate/core/common",
34 #"../components/components.gyp:data_reduction_proxy_common", TODO(GYP) 34 "//components/translate/core/language_detection",
35 #"../components/components.gyp:startup_metric_utils", TODO(GYP)
36 #"../components/components.gyp:plugins_renderer", TODO(GYP)
37 "//components/translate:translate_core_common",
38 #"../components/components.gyp:translate_core_language_detection", TODO(GYP )
39 "//components/visitedlink/renderer", 35 "//components/visitedlink/renderer",
40 "//content/public/renderer", 36 "//content/public/renderer",
41 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP)
42 #"../extensions/extensions_resources.gyp:extensions_resources", TODO(GYP)
43 "//media/cast/logging/proto", 37 "//media/cast/logging/proto",
44 #"../media/cast/cast.gyp:cast_sender", TODO(GYP) 38 "//third_party/re2",
45 #"../media/cast/cast.gyp:cast_transport", TODO(GYP)
46 "//net", 39 "//net",
47 "//skia", 40 "//skia",
48 "//third_party/WebKit/public:blink", 41 "//third_party/WebKit/public:blink",
49 "//third_party/icu", 42 "//third_party/icu",
50 "//third_party/npapi", 43 "//third_party/npapi",
51 "//third_party/widevine/cdm:version_h", 44 "//third_party/widevine/cdm:version_h",
52 "//ui/surface", 45 "//ui/surface",
53 "//v8:v8", 46 "//v8:v8",
54 "//webkit/child", 47 "//webkit/child",
55 "//webkit/common", 48 "//webkit/common",
56 "//webkit:resources", 49 "//webkit:resources",
50 #"../components/components.gyp:cdm_renderer", TODO(GYP)
51 #"../components/components.gyp:startup_metric_utils", TODO(GYP)
52 #"../components/components.gyp:plugins_renderer", TODO(GYP)
53 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP)
54 #"../extensions/extensions_resources.gyp:extensions_resources", TODO(GYP)
55 #"../media/cast/cast.gyp:cast_sender", TODO(GYP)
56 #"../media/cast/cast.gyp:cast_transport", TODO(GYP)
57 ] 57 ]
58 58
59 if (enable_nacl) { 59 if (enable_nacl) {
60 deps += [ 60 deps += [
61 #'../components/nacl.gyp:nacl', TODO(GYP) 61 #'../components/nacl.gyp:nacl', TODO(GYP)
62 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) 62 #'../components/nacl.gyp:nacl_renderer', TODO(GYP)
63 ] 63 ]
64 } 64 }
65 65
66 if (enable_plugins) { 66 if (enable_plugins) {
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 # ['win_pdf_metafile_for_printing==1', { 149 # ['win_pdf_metafile_for_printing==1', {
150 # 'sources': [ 150 # 'sources': [
151 # 'renderer/printing/print_web_view_helper_pdf_win.cc', 151 # 'renderer/printing/print_web_view_helper_pdf_win.cc',
152 # ], 152 # ],
153 # }, { 153 # }, {
154 # 'sources': [ 154 # 'sources': [
155 # 'renderer/printing/print_web_view_helper_win.cc', 155 # 'renderer/printing/print_web_view_helper_win.cc',
156 # ], 156 # ],
157 # }], 157 # }],
158 } 158 }
OLDNEW
« no previous file with comments | « chrome/common/BUILD.gn ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698