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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_browser_ui.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_chromeos', 9 'target_name': 'browser_chromeos',
10 'type': 'static_library', 10 'type': 'static_library',
11 'variables': { 11 'variables': {
12 'conditions': [ 12 'conditions': [
13 ['sysroot!=""', { 13 ['sysroot!=""', {
14 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar get_arch)"', 14 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar get_arch)"',
15 }, { 15 }, {
16 'pkg-config': 'pkg-config' 16 'pkg-config': 'pkg-config'
17 }], 17 }],
18 ], 18 ],
19 # Override to dynamically link the cras (ChromeOS audio) library. 19 # Override to dynamically link the cras (ChromeOS audio) library.
20 'use_cras%': 0, 20 'use_cras%': 0,
21 'enable_wexit_time_destructors': 1, 21 'enable_wexit_time_destructors': 1,
22 }, 22 },
23 'dependencies': [ 23 'dependencies': [
24 # TODO(tbarzic): Cleanup this list. 24 # TODO(tbarzic): Cleanup this list.
25 'app/policy/cloud_policy_codegen.gyp:policy', 25 'app/policy/cloud_policy_codegen.gyp:policy',
26 'autofill_regexes',
27 'browser_extensions', 26 'browser_extensions',
28 'browser/chromeos/input_method/input_method.gyp:gencode', 27 'browser/chromeos/input_method/input_method.gyp:gencode',
29 'browser/performance_monitor/performance_monitor.gyp:performance_monitor ', 28 'browser/performance_monitor/performance_monitor.gyp:performance_monitor ',
30 'cert_logger_proto', 29 'cert_logger_proto',
31 'chrome_resources.gyp:chrome_extra_resources', 30 'chrome_resources.gyp:chrome_extra_resources',
32 'chrome_resources.gyp:chrome_resources', 31 'chrome_resources.gyp:chrome_resources',
33 'chrome_resources.gyp:platform_locale_settings', 32 'chrome_resources.gyp:platform_locale_settings',
34 'chrome_resources.gyp:theme_resources', 33 'chrome_resources.gyp:theme_resources',
35 'common', 34 'common',
36 'common/extensions/api/api.gyp:api', 35 'common/extensions/api/api.gyp:api',
37 'common_net', 36 'common_net',
38 'contacts_proto', 37 'contacts_proto',
39 'debugger', 38 'debugger',
40 'drive_proto', 39 'drive_proto',
41 'feedback_proto', 40 'feedback_proto',
42 'in_memory_url_index_cache_proto', 41 'in_memory_url_index_cache_proto',
43 'installer_util', 42 'installer_util',
44 'safe_browsing_proto', 43 'safe_browsing_proto',
45 'safe_browsing_report_proto', 44 'safe_browsing_report_proto',
46 'variations_seed_proto', 45 'variations_seed_proto',
47 '../build/linux/system.gyp:dbus', 46 '../build/linux/system.gyp:dbus',
48 '../build/temp_gyp/googleurl.gyp:googleurl', 47 '../build/temp_gyp/googleurl.gyp:googleurl',
49 '../chromeos/chromeos.gyp:chromeos', 48 '../chromeos/chromeos.gyp:chromeos',
49 '../components/components.gyp:autofill_regexes',
50 '../content/content.gyp:content_browser', 50 '../content/content.gyp:content_browser',
51 '../content/content.gyp:content_common', 51 '../content/content.gyp:content_common',
52 '../crypto/crypto.gyp:crypto', 52 '../crypto/crypto.gyp:crypto',
53 '../dbus/dbus.gyp:dbus', 53 '../dbus/dbus.gyp:dbus',
54 '../device/device.gyp:device_bluetooth', 54 '../device/device.gyp:device_bluetooth',
55 '../media/media.gyp:media', 55 '../media/media.gyp:media',
56 '../net/net.gyp:net', 56 '../net/net.gyp:net',
57 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin 57 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin
58 '../printing/printing.gyp:printing', 58 '../printing/printing.gyp:printing',
59 '../skia/skia.gyp:skia', 59 '../skia/skia.gyp:skia',
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 'type': 'static_library', 820 'type': 'static_library',
821 'sources': [ 'browser/chromeos/drive/drive.proto' ], 821 'sources': [ 'browser/chromeos/drive/drive.proto' ],
822 'variables': { 822 'variables': {
823 'proto_in_dir': 'browser/chromeos/drive', 823 'proto_in_dir': 'browser/chromeos/drive',
824 'proto_out_dir': 'chrome/browser/chromeos/drive', 824 'proto_out_dir': 'chrome/browser/chromeos/drive',
825 }, 825 },
826 'includes': [ '../build/protoc.gypi' ] 826 'includes': [ '../build/protoc.gypi' ]
827 }, 827 },
828 ], 828 ],
829 } 829 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698