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

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: Rebased. 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 'renderer/extensions/chrome_v8_extension.cc', 431 'renderer/extensions/chrome_v8_extension.cc',
432 'renderer/extensions/chrome_v8_extension_handler.cc', 432 'renderer/extensions/chrome_v8_extension_handler.cc',
433 'renderer/extensions/context_menus_custom_bindings.cc', 433 'renderer/extensions/context_menus_custom_bindings.cc',
434 'renderer/extensions/file_browser_handler_custom_bindings.cc', 434 'renderer/extensions/file_browser_handler_custom_bindings.cc',
435 'renderer/extensions/page_actions_custom_bindings.cc', 435 'renderer/extensions/page_actions_custom_bindings.cc',
436 'renderer/extensions/render_view_observer_natives.cc', 436 'renderer/extensions/render_view_observer_natives.cc',
437 'renderer/extensions/send_request_natives.cc', 437 'renderer/extensions/send_request_natives.cc',
438 'renderer/extensions/tabs_custom_bindings.cc', 438 'renderer/extensions/tabs_custom_bindings.cc',
439 'renderer/extensions/tts_custom_bindings.cc', 439 'renderer/extensions/tts_custom_bindings.cc',
440 ], 440 ],
441 'conditions' : [
442 ['google_tv==1', {
443 'sources!' : [
444 'renderer/media/chrome_key_systems.cc',
445 ]
446 }],
447 ],
448 }], 441 }],
449 ['OS=="win"', { 442 ['OS=="win"', {
450 'include_dirs': [ 443 'include_dirs': [
451 '<(DEPTH)/third_party/wtl/include', 444 '<(DEPTH)/third_party/wtl/include',
452 ], 445 ],
453 'conditions': [ 446 'conditions': [
454 ['win_use_allocator_shim==1', { 447 ['win_use_allocator_shim==1', {
455 'dependencies': [ 448 'dependencies': [
456 '<(allocator_target)', 449 '<(allocator_target)',
457 ], 450 ],
(...skipping 12 matching lines...) Expand all
470 }], 463 }],
471 ['enable_printing!=0', { 464 ['enable_printing!=0', {
472 'dependencies': [ 465 'dependencies': [
473 '../printing/printing.gyp:printing', 466 '../printing/printing.gyp:printing',
474 ], 467 ],
475 }], 468 }],
476 ], 469 ],
477 }, 470 },
478 ], 471 ],
479 } 472 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698