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

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

Issue 811563008: Moving files from //chrome to //components/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds forgotten files Created 5 years, 11 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
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 "//third_party/wtl", 155 "//third_party/wtl",
156 ] 156 ]
157 } 157 }
158 if (!is_android) { 158 if (!is_android) {
159 sources += 159 sources +=
160 rebase_path(gypi_values.chrome_renderer_non_android_sources, ".", "..") 160 rebase_path(gypi_values.chrome_renderer_non_android_sources, ".", "..")
161 } 161 }
162 162
163 # TODO(GYP) 163 # TODO(GYP)
164 # 'sources': [ 164 # 'sources': [
165 # 'renderer/printing/print_web_view_helper_pdf_win.cc', 165 # '//components/printing/renderer/print_web_view_helper_pdf_win.cc',
166 # ], 166 # ],
167 } 167 }
168 168
169 # In GYP this is part of test_support_common. 169 # In GYP this is part of test_support_common.
170 source_set("test_support") { 170 source_set("test_support") {
171 testonly = true 171 testonly = true
172 visibility = [ "//chrome/test:test_support" ] 172 visibility = [ "//chrome/test:test_support" ]
173 173
174 sources = [ 174 sources = [
175 "chrome_mock_render_thread.cc", 175 "chrome_mock_render_thread.cc",
(...skipping 21 matching lines...) Expand all
197 ] 197 ]
198 } 198 }
199 199
200 if (enable_webrtc) { 200 if (enable_webrtc) {
201 sources += [ 201 sources += [
202 "media/mock_webrtc_logging_message_filter.cc", 202 "media/mock_webrtc_logging_message_filter.cc",
203 "media/mock_webrtc_logging_message_filter.h", 203 "media/mock_webrtc_logging_message_filter.h",
204 ] 204 ]
205 } 205 }
206 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698