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

Side by Side Diff: content/content_browser.gypi

Issue 7840041: Refactor some more BrowserMain code. Move core code that's required by all embedders to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 9 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 | Annotate | Revision Log
« no previous file with comments | « content/common/content_switches.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'content_browser', 8 'target_name': 'content_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 ['toolkit_uses_gtk == 1', { 563 ['toolkit_uses_gtk == 1', {
564 'dependencies': [ 564 'dependencies': [
565 '../build/linux/system.gyp:dbus', 565 '../build/linux/system.gyp:dbus',
566 # For FcLangSetAdd call in render_sandbox_host_linux.cc 566 # For FcLangSetAdd call in render_sandbox_host_linux.cc
567 '../build/linux/system.gyp:fontconfig', 567 '../build/linux/system.gyp:fontconfig',
568 '../build/linux/system.gyp:gtk', 568 '../build/linux/system.gyp:gtk',
569 # For XShm* in backing_store_x.cc 569 # For XShm* in backing_store_x.cc
570 '../build/linux/system.gyp:x11', 570 '../build/linux/system.gyp:x11',
571 '../dbus/dbus.gyp:dbus', 571 '../dbus/dbus.gyp:dbus',
572 ], 572 ],
573 'conditions': [
574 ['linux_sandbox_path != ""', {
575 'defines': [
576 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"',
577 ],
578 }],
579 ],
573 }], 580 }],
574 ['OS=="linux" and toolkit_views==1',{ 581 ['OS=="linux" and toolkit_views==1',{
575 'dependencies': [ 582 'dependencies': [
576 '../views/views.gyp:views', 583 '../views/views.gyp:views',
577 ], 584 ],
578 }], 585 }],
579 ['OS=="mac"', { 586 ['OS=="mac"', {
580 'sources!': [ 587 'sources!': [
581 'browser/power_save_blocker_stub.cc', 588 'browser/power_save_blocker_stub.cc',
582 ], 589 ],
(...skipping 30 matching lines...) Expand all
613 ['exclude', '^browser/accessibility/browser_accessibility_win.h'], 620 ['exclude', '^browser/accessibility/browser_accessibility_win.h'],
614 ['exclude', '^browser/renderer_host/render_widget_host_view_win.cc'] , 621 ['exclude', '^browser/renderer_host/render_widget_host_view_win.cc'] ,
615 ['exclude', '^browser/renderer_host/render_widget_host_view_win.h'], 622 ['exclude', '^browser/renderer_host/render_widget_host_view_win.h'],
616 ['exclude', '^browser/renderer_host/render_message_filter_win.cc'], 623 ['exclude', '^browser/renderer_host/render_message_filter_win.cc'],
617 ], 624 ],
618 }], 625 }],
619 ], 626 ],
620 }, 627 },
621 ], 628 ],
622 } 629 }
OLDNEW
« no previous file with comments | « content/common/content_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698