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

Side by Side Diff: content/content_browser.gypi

Issue 9700023: Move creation of content TabContentsViews to content so that we can hide these headers through DEPS… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 9 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 'dependencies': [ 6 'dependencies': [
7 'browser/debugger/devtools_resources.gyp:devtools_resources', 7 'browser/debugger/devtools_resources.gyp:devtools_resources',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../net/net.gyp:http_server', 10 '../net/net.gyp:http_server',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'public/browser/trace_controller.h', 135 'public/browser/trace_controller.h',
136 'public/browser/trace_subscriber.h', 136 'public/browser/trace_subscriber.h',
137 'public/browser/user_metrics.h', 137 'public/browser/user_metrics.h',
138 'public/browser/utility_process_host.h', 138 'public/browser/utility_process_host.h',
139 'public/browser/web_contents.h', 139 'public/browser/web_contents.h',
140 'public/browser/web_contents_delegate.cc', 140 'public/browser/web_contents_delegate.cc',
141 'public/browser/web_contents_delegate.h', 141 'public/browser/web_contents_delegate.h',
142 'public/browser/web_contents_observer.cc', 142 'public/browser/web_contents_observer.cc',
143 'public/browser/web_contents_observer.h', 143 'public/browser/web_contents_observer.h',
144 'public/browser/web_contents_view.h', 144 'public/browser/web_contents_view.h',
145 'public/browser/web_contents_view_gtk_delegate.h', 145 'public/browser/web_contents_view_delegate.h',
146 'public/browser/web_contents_view_mac_delegate.h',
147 'public/browser/web_contents_view_win_delegate.h',
148 'public/browser/web_drag_dest_delegate.h', 146 'public/browser/web_drag_dest_delegate.h',
149 'public/browser/web_intents_dispatcher.h', 147 'public/browser/web_intents_dispatcher.h',
150 'public/browser/web_ui.h', 148 'public/browser/web_ui.h',
151 'public/browser/web_ui_controller.cc', 149 'public/browser/web_ui_controller.cc',
152 'public/browser/web_ui_controller.h', 150 'public/browser/web_ui_controller.h',
153 'public/browser/web_ui_controller_factory.h', 151 'public/browser/web_ui_controller_factory.h',
154 'public/browser/web_ui_message_handler.h', 152 'public/browser/web_ui_message_handler.h',
155 'public/browser/worker_service.h', 153 'public/browser/worker_service.h',
156 'public/browser/worker_service_observer.h', 154 'public/browser/worker_service_observer.h',
157 'public/browser/zygote_host_linux.h', 155 'public/browser/zygote_host_linux.h',
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 ['toolkit_uses_gtk == 1', { 754 ['toolkit_uses_gtk == 1', {
757 'dependencies': [ 755 'dependencies': [
758 '../build/linux/system.gyp:dbus', 756 '../build/linux/system.gyp:dbus',
759 # For FcLangSetAdd call in render_sandbox_host_linux.cc 757 # For FcLangSetAdd call in render_sandbox_host_linux.cc
760 '../build/linux/system.gyp:fontconfig', 758 '../build/linux/system.gyp:fontconfig',
761 '../build/linux/system.gyp:gtk', 759 '../build/linux/system.gyp:gtk',
762 # For XShm* in backing_store_x.cc 760 # For XShm* in backing_store_x.cc
763 '../build/linux/system.gyp:x11', 761 '../build/linux/system.gyp:x11',
764 '../dbus/dbus.gyp:dbus', 762 '../dbus/dbus.gyp:dbus',
765 ], 763 ],
766 }, {
767 'sources!': [
768 # The rules only catch files that start or end with gtk, but this file
769 # would be incorrectly named if we forced the gtk at the end.
770 'public/browser/web_contents_view_gtk_delegate.h',
771 ],
772 }], 764 }],
773 ['OS=="linux"', { 765 ['OS=="linux"', {
774 'dependencies': [ 766 'dependencies': [
775 '../build/linux/system.gyp:udev', 767 '../build/linux/system.gyp:udev',
776 ], 768 ],
777 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS 769 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS
778 'conditions': [ 770 'conditions': [
779 ['linux_sandbox_path != ""', { 771 ['linux_sandbox_path != ""', {
780 'defines': [ 772 'defines': [
781 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', 773 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 ], 886 ],
895 }], 887 }],
896 ['input_speech==0', { 888 ['input_speech==0', {
897 'sources/': [ 889 'sources/': [
898 ['exclude', '^browser/speech/'], 890 ['exclude', '^browser/speech/'],
899 ], 891 ],
900 }], 892 }],
901 ], 893 ],
902 } 894 }
903 895
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698