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

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

Issue 423613003: Move strings from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: one more android_webview fix + REBASE 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 22 matching lines...) Expand all
33 "//chrome/common/net", 33 "//chrome/common/net",
34 "//chrome:resources", 34 "//chrome:resources",
35 "//chrome:strings", 35 "//chrome:strings",
36 "//components/autofill/content/renderer", 36 "//components/autofill/content/renderer",
37 "//components/data_reduction_proxy/common", 37 "//components/data_reduction_proxy/common",
38 "//components/plugins/renderer", 38 "//components/plugins/renderer",
39 "//components/startup_metric_utils", 39 "//components/startup_metric_utils",
40 "//components/translate/core/common", 40 "//components/translate/core/common",
41 "//components/translate/core/language_detection", 41 "//components/translate/core/language_detection",
42 "//components/visitedlink/renderer", 42 "//components/visitedlink/renderer",
43 "//content/app/strings",
jochen (gone - plz use gerrit) 2014/08/01 07:52:16 same question here?
43 "//content/public/renderer", 44 "//content/public/renderer",
44 "//extensions:extensions_resources", 45 "//extensions:extensions_resources",
45 "//media/cast/logging/proto", 46 "//media/cast/logging/proto",
46 "//third_party/re2",
47 "//net", 47 "//net",
48 "//skia", 48 "//skia",
49 "//third_party/WebKit/public:blink", 49 "//third_party/WebKit/public:blink",
50 "//third_party/icu", 50 "//third_party/icu",
51 "//third_party/npapi", 51 "//third_party/npapi",
52 "//third_party/re2",
52 "//third_party/widevine/cdm:version_h", 53 "//third_party/widevine/cdm:version_h",
53 "//ui/surface", 54 "//ui/surface",
54 "//v8:v8", 55 "//v8:v8",
55 "//webkit/child", 56 "//webkit/child",
56 "//webkit/common", 57 "//webkit/common",
57 "//webkit:resources", 58 "//webkit:resources",
58 #"../components/components.gyp:cdm_renderer", TODO(GYP) 59 #"../components/components.gyp:cdm_renderer", TODO(GYP)
59 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP) 60 #"../extensions/extensions.gyp:extensions_renderer", TODO(GYP)
60 #"../media/cast/cast.gyp:cast_sender", TODO(GYP) 61 #"../media/cast/cast.gyp:cast_sender", TODO(GYP)
61 #"../media/cast/cast.gyp:cast_transport", TODO(GYP) 62 #"../media/cast/cast.gyp:cast_transport", TODO(GYP)
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 # ['win_pdf_metafile_for_printing==1', { 150 # ['win_pdf_metafile_for_printing==1', {
150 # 'sources': [ 151 # 'sources': [
151 # 'renderer/printing/print_web_view_helper_pdf_win.cc', 152 # 'renderer/printing/print_web_view_helper_pdf_win.cc',
152 # ], 153 # ],
153 # }, { 154 # }, {
154 # 'sources': [ 155 # 'sources': [
155 # 'renderer/printing/print_web_view_helper_win.cc', 156 # 'renderer/printing/print_web_view_helper_win.cc',
156 # ], 157 # ],
157 # }], 158 # }],
158 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698