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

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

Issue 361373002: components: Add bookmarks to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
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 16 matching lines...) Expand all
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 "//third_party/re2",
32 #"../components/components.gyp:autofill_content_renderer", TODO(GYP) 32 #"../components/components.gyp:autofill_content_renderer", TODO(GYP)
33 #"../components/components.gyp:cdm_renderer", TODO(GYP) 33 #"../components/components.gyp:cdm_renderer", TODO(GYP)
34 #"../components/components.gyp:data_reduction_proxy_common", TODO(GYP) 34 #"../components/components.gyp:data_reduction_proxy_common", TODO(GYP)
35 #"../components/components.gyp:startup_metric_utils", TODO(GYP) 35 #"../components/components.gyp:startup_metric_utils", TODO(GYP)
36 #"../components/components.gyp:plugins_renderer", TODO(GYP) 36 #"../components/components.gyp:plugins_renderer", TODO(GYP)
37 "//components/translate:translate_core_common", 37 "//components/translate/core/common",
38 #"../components/components.gyp:translate_core_language_detection", TODO(GYP ) 38 #"../components/components.gyp:translate_core_language_detection", TODO(GYP )
39 "//components/visitedlink/renderer", 39 "//components/visitedlink/renderer",
40 "//content/public/renderer", 40 "//content/public/renderer",
41 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP) 41 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP)
42 #"../extensions/extensions_resources.gyp:extensions_resources", TODO(GYP) 42 #"../extensions/extensions_resources.gyp:extensions_resources", TODO(GYP)
43 "//media/cast/logging/proto", 43 "//media/cast/logging/proto",
44 #"../media/cast/cast.gyp:cast_sender", TODO(GYP) 44 #"../media/cast/cast.gyp:cast_sender", TODO(GYP)
45 #"../media/cast/cast.gyp:cast_transport", TODO(GYP) 45 #"../media/cast/cast.gyp:cast_transport", TODO(GYP)
46 "//net", 46 "//net",
47 "//skia", 47 "//skia",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 # ['win_pdf_metafile_for_printing==1', { 140 # ['win_pdf_metafile_for_printing==1', {
141 # 'sources': [ 141 # 'sources': [
142 # 'renderer/printing/print_web_view_helper_pdf_win.cc', 142 # 'renderer/printing/print_web_view_helper_pdf_win.cc',
143 # ], 143 # ],
144 # }, { 144 # }, {
145 # 'sources': [ 145 # 'sources': [
146 # 'renderer/printing/print_web_view_helper_win.cc', 146 # 'renderer/printing/print_web_view_helper_win.cc',
147 # ], 147 # ],
148 # }], 148 # }],
149 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698