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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 516823002: Removed print_web_view_helper_win.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Thu Aug 28 01:30:54 PDT 2014 Created 6 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chrome_renderer_sources': [ 7 'chrome_renderer_sources': [
8 'renderer/benchmarking_extension.cc', 8 'renderer/benchmarking_extension.cc',
9 'renderer/benchmarking_extension.h', 9 'renderer/benchmarking_extension.h',
10 'renderer/extensions/chrome_extension_helper.cc', 10 'renderer/extensions/chrome_extension_helper.cc',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'renderer/spellchecker/spellcheck_worditerator.cc', 251 'renderer/spellchecker/spellcheck_worditerator.cc',
252 'renderer/spellchecker/spellcheck_worditerator.h', 252 'renderer/spellchecker/spellcheck_worditerator.h',
253 'renderer/spellchecker/spelling_engine.h', 253 'renderer/spellchecker/spelling_engine.h',
254 ], 254 ],
255 'chrome_renderer_printing_sources': [ 255 'chrome_renderer_printing_sources': [
256 'renderer/printing/print_web_view_helper.cc', 256 'renderer/printing/print_web_view_helper.cc',
257 'renderer/printing/print_web_view_helper.h', 257 'renderer/printing/print_web_view_helper.h',
258 'renderer/printing/print_web_view_helper_android.cc', 258 'renderer/printing/print_web_view_helper_android.cc',
259 'renderer/printing/print_web_view_helper_linux.cc', 259 'renderer/printing/print_web_view_helper_linux.cc',
260 'renderer/printing/print_web_view_helper_mac.mm', 260 'renderer/printing/print_web_view_helper_mac.mm',
261 'renderer/printing/print_web_view_helper_pdf_win.cc',
261 ], 262 ],
262 'chrome_renderer_full_printing_sources': [ 263 'chrome_renderer_full_printing_sources': [
263 'renderer/pepper/chrome_pdf_print_client.cc', 264 'renderer/pepper/chrome_pdf_print_client.cc',
264 'renderer/pepper/chrome_pdf_print_client.h', 265 'renderer/pepper/chrome_pdf_print_client.h',
265 ], 266 ],
266 }, 267 },
267 'targets': [ 268 'targets': [
268 { 269 {
269 'target_name': 'renderer', 270 'target_name': 'renderer',
270 'type': 'static_library', 271 'type': 'static_library',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 ], 386 ],
386 'sources': [ 387 'sources': [
387 '<@(chrome_renderer_printing_sources)', 388 '<@(chrome_renderer_printing_sources)',
388 ], 389 ],
389 }], 390 }],
390 ['enable_printing==1', { 391 ['enable_printing==1', {
391 'sources': [ 392 'sources': [
392 '<@(chrome_renderer_full_printing_sources)', 393 '<@(chrome_renderer_full_printing_sources)',
393 ], 394 ],
394 }], 395 }],
395 ['win_pdf_metafile_for_printing==1', {
396 'sources': [
397 'renderer/printing/print_web_view_helper_pdf_win.cc',
398 ],
399 }, {
400 'sources': [
401 'renderer/printing/print_web_view_helper_win.cc',
402 ],
403 }],
404 ['OS!="android"', { 396 ['OS!="android"', {
405 'sources': [ 397 'sources': [
406 '<@(chrome_renderer_non_android_sources)', 398 '<@(chrome_renderer_non_android_sources)',
407 ], 399 ],
408 }], 400 }],
409 ['OS=="win"', { 401 ['OS=="win"', {
410 'dependencies': [ 402 'dependencies': [
411 '../chrome_elf/chrome_elf.gyp:chrome_elf', 403 '../chrome_elf/chrome_elf.gyp:chrome_elf',
412 '../components/components.gyp:dom_distiller_core', # Needed by chro me_content_renderer_client.cc. 404 '../components/components.gyp:dom_distiller_core', # Needed by chro me_content_renderer_client.cc.
413 ], 405 ],
(...skipping 15 matching lines...) Expand all
429 'dependencies': [ 421 'dependencies': [
430 # TODO(hclam): See crbug.com/298380 for details. 422 # TODO(hclam): See crbug.com/298380 for details.
431 # We should isolate the APIs needed by the renderer. 423 # We should isolate the APIs needed by the renderer.
432 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', 424 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api',
433 ], 425 ],
434 }], 426 }],
435 ], 427 ],
436 }, 428 },
437 ], 429 ],
438 } 430 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698