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

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

Issue 489223002: Add chrome, installer_util targets to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
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 18 matching lines...) Expand all
29 29
30 defines = [] 30 defines = []
31 31
32 deps = [ 32 deps = [
33 "//base/allocator", 33 "//base/allocator",
34 "//chrome/common", 34 "//chrome/common",
35 "//chrome/common/net", 35 "//chrome/common/net",
36 "//chrome:resources", 36 "//chrome:resources",
37 "//chrome:strings", 37 "//chrome:strings",
38 "//components/autofill/content/renderer", 38 "//components/autofill/content/renderer",
39 "//components/cdm/renderer",
39 "//components/data_reduction_proxy/common", 40 "//components/data_reduction_proxy/common",
40 "//components/plugins/renderer", 41 "//components/plugins/renderer",
41 "//components/startup_metric_utils", 42 "//components/startup_metric_utils",
42 "//components/translate/core/common", 43 "//components/translate/core/common",
43 "//components/translate/core/language_detection", 44 "//components/translate/core/language_detection",
44 "//components/visitedlink/renderer", 45 "//components/visitedlink/renderer",
45 "//content/app/strings", 46 "//content/app/strings",
46 "//content/public/renderer", 47 "//content/public/renderer",
47 "//extensions:extensions_resources", 48 "//extensions:extensions_resources",
49 "//extensions/renderer",
50 "//media/cast:net",
51 "//media/cast:sender",
48 "//media/cast/logging/proto", 52 "//media/cast/logging/proto",
49 "//net", 53 "//net",
50 "//skia", 54 "//skia",
51 "//third_party/WebKit/public:blink", 55 "//third_party/WebKit/public:blink",
52 "//third_party/WebKit/public:resources", 56 "//third_party/WebKit/public:resources",
53 "//third_party/icu", 57 "//third_party/icu",
54 "//third_party/npapi", 58 "//third_party/npapi",
55 "//third_party/re2", 59 "//third_party/re2",
56 "//third_party/widevine/cdm:version_h", 60 "//third_party/widevine/cdm:version_h",
57 "//ui/surface", 61 "//ui/surface",
58 "//v8:v8", 62 "//v8:v8",
59 "//webkit/child", 63 "//webkit/child",
60 "//webkit/common", 64 "//webkit/common",
61 "//webkit/glue/resources", 65 "//webkit/glue/resources",
62 #"../components/components.gyp:cdm_renderer", TODO(GYP)
63 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP)
64 #"../media/cast/cast.gyp:cast_sender", TODO(GYP)
65 #"../media/cast/cast.gyp:cast_transport", TODO(GYP)
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.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) {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 # ['win_pdf_metafile_for_printing==1', { 153 # ['win_pdf_metafile_for_printing==1', {
154 # 'sources': [ 154 # 'sources': [
155 # 'renderer/printing/print_web_view_helper_pdf_win.cc', 155 # 'renderer/printing/print_web_view_helper_pdf_win.cc',
156 # ], 156 # ],
157 # }, { 157 # }, {
158 # 'sources': [ 158 # 'sources': [
159 # 'renderer/printing/print_web_view_helper_win.cc', 159 # 'renderer/printing/print_web_view_helper_win.cc',
160 # ], 160 # ],
161 # }], 161 # }],
162 } 162 }
OLDNEW
« no previous file with comments | « chrome/installer/util/BUILD.gn ('k') | chrome/version.gni » ('j') | chrome/version.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698