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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 136343002: Remove Chrome for TV code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed scherkus's comments. Created 6 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 | Annotate | Revision Log
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 'renderer/extensions/chrome_v8_extension.cc', 430 'renderer/extensions/chrome_v8_extension.cc',
431 'renderer/extensions/chrome_v8_extension_handler.cc', 431 'renderer/extensions/chrome_v8_extension_handler.cc',
432 'renderer/extensions/context_menus_custom_bindings.cc', 432 'renderer/extensions/context_menus_custom_bindings.cc',
433 'renderer/extensions/file_browser_handler_custom_bindings.cc', 433 'renderer/extensions/file_browser_handler_custom_bindings.cc',
434 'renderer/extensions/page_actions_custom_bindings.cc', 434 'renderer/extensions/page_actions_custom_bindings.cc',
435 'renderer/extensions/render_view_observer_natives.cc', 435 'renderer/extensions/render_view_observer_natives.cc',
436 'renderer/extensions/send_request_natives.cc', 436 'renderer/extensions/send_request_natives.cc',
437 'renderer/extensions/tabs_custom_bindings.cc', 437 'renderer/extensions/tabs_custom_bindings.cc',
438 'renderer/extensions/tts_custom_bindings.cc', 438 'renderer/extensions/tts_custom_bindings.cc',
439 ], 439 ],
440 'conditions' : [
441 ['google_tv==1', {
442 'sources!' : [
443 'renderer/media/chrome_key_systems.cc',
444 ]
445 }],
446 ],
447 }], 440 }],
448 ['OS=="win"', { 441 ['OS=="win"', {
449 'include_dirs': [ 442 'include_dirs': [
450 '<(DEPTH)/third_party/wtl/include', 443 '<(DEPTH)/third_party/wtl/include',
451 ], 444 ],
452 'conditions': [ 445 'conditions': [
453 ['win_use_allocator_shim==1', { 446 ['win_use_allocator_shim==1', {
454 'dependencies': [ 447 'dependencies': [
455 '<(allocator_target)', 448 '<(allocator_target)',
456 ], 449 ],
(...skipping 12 matching lines...) Expand all
469 }], 462 }],
470 ['enable_printing!=0', { 463 ['enable_printing!=0', {
471 'dependencies': [ 464 'dependencies': [
472 '../printing/printing.gyp:printing', 465 '../printing/printing.gyp:printing',
473 ], 466 ],
474 }], 467 }],
475 ], 468 ],
476 }, 469 },
477 ], 470 ],
478 } 471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698