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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 10916010: Relanding "views: Add a gyp file to build webview.". Try 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos fixes Created 8 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 | « build/all.gyp ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 4718 matching lines...) Expand 10 before | Expand all | Expand 10 after
4729 }], 4729 }],
4730 ['OS=="win"', { 4730 ['OS=="win"', {
4731 'include_dirs': [ 4731 'include_dirs': [
4732 '<(DEPTH)/third_party/wtl/include', 4732 '<(DEPTH)/third_party/wtl/include',
4733 ], 4733 ],
4734 'dependencies': [ 4734 'dependencies': [
4735 'installer_util_strings', 4735 'installer_util_strings',
4736 '../google_update/google_update.gyp:google_update', 4736 '../google_update/google_update.gyp:google_update',
4737 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 4737 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
4738 '../third_party/isimpledom/isimpledom.gyp:isimpledom', 4738 '../third_party/isimpledom/isimpledom.gyp:isimpledom',
4739 '../ui/views/controls/webview/webview.gyp:webview',
4739 '../ui/views/views.gyp:views', 4740 '../ui/views/views.gyp:views',
4740 ], 4741 ],
4741 'export_dependent_settings': [ 4742 'export_dependent_settings': [
4743 '../ui/views/controls/webview/webview.gyp:webview',
4742 '../ui/views/views.gyp:views', 4744 '../ui/views/views.gyp:views',
4743 ], 4745 ],
4744 'sources': [ 4746 'sources': [
4745 # Using built-in rule in vstudio for midl. 4747 # Using built-in rule in vstudio for midl.
4746 'browser/history/history_indexer.idl', 4748 'browser/history/history_indexer.idl',
4747 'browser/ui/views/network_profile_bubble_view.cc', 4749 'browser/ui/views/network_profile_bubble_view.cc',
4748 'browser/ui/views/network_profile_bubble_view.h', 4750 'browser/ui/views/network_profile_bubble_view.h',
4749 'browser/ui/webui/conflicts_ui.cc', 4751 'browser/ui/webui/conflicts_ui.cc',
4750 'browser/ui/webui/conflicts_ui.h', 4752 'browser/ui/webui/conflicts_ui.h',
4751 ], 4753 ],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
4790 # Exclude parts of password_manager. 4792 # Exclude parts of password_manager.
4791 ['exclude', '^browser/password_manager/ie7_password\\.cc$'], 4793 ['exclude', '^browser/password_manager/ie7_password\\.cc$'],
4792 ], 4794 ],
4793 'conditions': [ 4795 'conditions': [
4794 ['use_aura==1',{ 4796 ['use_aura==1',{
4795 'dependencies': [ 4797 'dependencies': [
4796 '../build/linux/system.gyp:dbus', 4798 '../build/linux/system.gyp:dbus',
4797 '../build/linux/system.gyp:fontconfig', 4799 '../build/linux/system.gyp:fontconfig',
4798 '../build/linux/system.gyp:x11', 4800 '../build/linux/system.gyp:x11',
4799 '../dbus/dbus.gyp:dbus', 4801 '../dbus/dbus.gyp:dbus',
4802 '../ui/views/controls/webview/webview.gyp:webview',
4800 '../ui/views/views.gyp:views', 4803 '../ui/views/views.gyp:views',
4801 ], 4804 ],
4802 'include_dirs': [ 4805 'include_dirs': [
4803 '<(INTERMEDIATE_DIR)', 4806 '<(INTERMEDIATE_DIR)',
4804 '<(INTERMEDIATE_DIR)/chrome', 4807 '<(INTERMEDIATE_DIR)/chrome',
4805 ], 4808 ],
4806 'sources/': [ 4809 'sources/': [
4807 ['exclude', '^browser/platform_util_common_linux.cc'], 4810 ['exclude', '^browser/platform_util_common_linux.cc'],
4808 ['exclude', '^browser/ui/views/frame/app_panel_browser_frame_vie w.cc'], 4811 ['exclude', '^browser/ui/views/frame/app_panel_browser_frame_vie w.cc'],
4809 ['exclude', '^browser/ui/views/frame/app_panel_browser_frame_vie w.h'], 4812 ['exclude', '^browser/ui/views/frame/app_panel_browser_frame_vie w.h'],
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
5042 'includes': [ '../build/jni_generator.gypi' ], 5045 'includes': [ '../build/jni_generator.gypi' ],
5043 'dependencies': [ 5046 'dependencies': [
5044 'android_jar_jni_headers', 5047 'android_jar_jni_headers',
5045 ], 5048 ],
5046 }, 5049 },
5047 ], 5050 ],
5048 }, 5051 },
5049 ], 5052 ],
5050 ], 5053 ],
5051 } 5054 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698