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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 11412211: [sync] Componentize sync: Part Final: Target 'sync' is now its own component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Component build working on all platforms Created 7 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 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': 'browser_extensions', 8 'target_name': 'browser_extensions',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
11 # Since browser and browser_extensions actually depend on each other, 11 # Since browser and browser_extensions actually depend on each other,
12 # we must omit the dependency from browser_extensions to browser. 12 # we must omit the dependency from browser_extensions to browser.
13 # However, this means browser_extensions and browser should more or less 13 # However, this means browser_extensions and browser should more or less
14 # have the same dependencies. Once browser_extensions is untangled from 14 # have the same dependencies. Once browser_extensions is untangled from
15 # browser, then we can clean up these dependencies. 15 # browser, then we can clean up these dependencies.
16 'dependencies': [ 16 'dependencies': [
17 '../sync/protocol/sync_proto.gyp:sync_proto',
18 'chrome_resources.gyp:chrome_extra_resources', 17 'chrome_resources.gyp:chrome_extra_resources',
19 'chrome_resources.gyp:chrome_resources', 18 'chrome_resources.gyp:chrome_resources',
20 'chrome_resources.gyp:chrome_strings', 19 'chrome_resources.gyp:chrome_strings',
21 'chrome_resources.gyp:platform_locale_settings', 20 'chrome_resources.gyp:platform_locale_settings',
22 'chrome_resources.gyp:theme_resources', 21 'chrome_resources.gyp:theme_resources',
23 'common', 22 'common',
24 'common/extensions/api/api.gyp:api', 23 'common/extensions/api/api.gyp:api',
25 'common_net', 24 'common_net',
26 'contacts_proto', 25 'contacts_proto',
27 'debugger', 26 'debugger',
28 'in_memory_url_index_cache_proto', 27 'in_memory_url_index_cache_proto',
29 'installer_util', 28 'installer_util',
30 '../build/temp_gyp/googleurl.gyp:googleurl', 29 '../build/temp_gyp/googleurl.gyp:googleurl',
31 '../content/content.gyp:content_browser', 30 '../content/content.gyp:content_browser',
32 '../crypto/crypto.gyp:crypto', 31 '../crypto/crypto.gyp:crypto',
33 '../device/device.gyp:device_bluetooth', 32 '../device/device.gyp:device_bluetooth',
34 '../net/net.gyp:net', 33 '../net/net.gyp:net',
35 '../skia/skia.gyp:skia', 34 '../skia/skia.gyp:skia',
36 '../sync/sync.gyp:sync_notifier', 35 '../sync/sync.gyp:sync_notifier',
36 '../sync/sync.gyp:sync_proto',
37 '../third_party/bzip2/bzip2.gyp:bzip2', 37 '../third_party/bzip2/bzip2.gyp:bzip2',
38 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
akalin 2013/01/07 20:14:51 just curious, where's the direct dep on cacheinval
Raghu Simha 2013/01/08 11:27:48 chrome/browser/api/push_messaging/push_message_inv
38 '../third_party/icu/icu.gyp:icui18n', 39 '../third_party/icu/icu.gyp:icui18n',
39 '../third_party/icu/icu.gyp:icuuc', 40 '../third_party/icu/icu.gyp:icuuc',
40 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 41 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
41 '../third_party/libusb/libusb.gyp:libusb', 42 '../third_party/libusb/libusb.gyp:libusb',
42 '../third_party/re2/re2.gyp:re2', 43 '../third_party/re2/re2.gyp:re2',
43 '../ui/base/strings/ui_strings.gyp:ui_strings', 44 '../ui/base/strings/ui_strings.gyp:ui_strings',
44 '../ui/ui.gyp:ui', 45 '../ui/ui.gyp:ui',
45 '../ui/ui.gyp:ui_resources', 46 '../ui/ui.gyp:ui_resources',
46 '../webkit/support/webkit_support.gyp:glue', 47 '../webkit/support/webkit_support.gyp:glue',
47 '../webkit/support/webkit_support.gyp:user_agent', 48 '../webkit/support/webkit_support.gyp:user_agent',
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 'msvs_settings': { 959 'msvs_settings': {
959 'VCLinkerTool': { 960 'VCLinkerTool': {
960 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 961 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
961 }, 962 },
962 }, 963 },
963 }, 964 },
964 ], 965 ],
965 }, ], # 'OS=="win"' 966 }, ], # 'OS=="win"'
966 ], # 'conditions' 967 ], # 'conditions'
967 } 968 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698