OLD | NEW |
---|---|
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 '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', | 17 '../sync/protocol/sync_proto.gyp:sync_proto', |
18 'chrome_resources.gyp:chrome_extra_resources', | 18 'chrome_resources.gyp:chrome_extra_resources', |
19 'chrome_resources.gyp:chrome_resources', | 19 'chrome_resources.gyp:chrome_resources', |
20 'chrome_resources.gyp:chrome_strings', | 20 'chrome_resources.gyp:chrome_strings', |
21 'chrome_resources.gyp:platform_locale_settings', | 21 'chrome_resources.gyp:platform_locale_settings', |
22 'chrome_resources.gyp:theme_resources', | 22 'chrome_resources.gyp:theme_resources', |
23 'common', | 23 'common', |
24 'common/extensions/api/api.gyp:api', | 24 'common/extensions/api/api.gyp:api', |
25 'common_net', | 25 'common_net', |
26 'contacts_proto', | |
tbarzic
2013/01/16 05:35:06
this was breaking mac (contancts_proto src is brow
| |
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', |
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
735 ['exclude', '^browser/extensions/api/terminal/terminal_extension_hel per.cc'], | 734 ['exclude', '^browser/extensions/api/terminal/terminal_extension_hel per.cc'], |
736 ['exclude', '^browser/extensions/api/terminal/terminal_extension_hel per.h'], | 735 ['exclude', '^browser/extensions/api/terminal/terminal_extension_hel per.h'], |
737 ['exclude', '^browser/extensions/api/terminal/terminal_private_api.c c'], | 736 ['exclude', '^browser/extensions/api/terminal/terminal_private_api.c c'], |
738 ['exclude', '^browser/extensions/api/terminal/terminal_private_api.h '], | 737 ['exclude', '^browser/extensions/api/terminal/terminal_private_api.h '], |
739 ], | 738 ], |
740 }, { # chromeos==1 | 739 }, { # chromeos==1 |
741 'dependencies': [ | 740 'dependencies': [ |
742 '../build/linux/system.gyp:dbus', | 741 '../build/linux/system.gyp:dbus', |
743 '../third_party/libevent/libevent.gyp:libevent', | 742 '../third_party/libevent/libevent.gyp:libevent', |
744 'browser/chromeos/input_method/input_method.gyp:gencode', | 743 'browser/chromeos/input_method/input_method.gyp:gencode', |
744 'contacts_proto', | |
745 ], | 745 ], |
746 'sources!': [ | 746 'sources!': [ |
747 'browser/extensions/default_apps.cc', | 747 'browser/extensions/default_apps.cc', |
748 'browser/extensions/default_apps.h', | 748 'browser/extensions/default_apps.h', |
749 ], | 749 ], |
750 }], | 750 }], |
751 ['enable_extensions==0', { | 751 ['enable_extensions==0', { |
752 'sources/': [ | 752 'sources/': [ |
753 # Handle files in browser/extensions/api. Exclude everything by defa ult, white list | 753 # Handle files in browser/extensions/api. Exclude everything by defa ult, white list |
754 # files if they are needed for linking. | 754 # files if they are needed for linking. |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
959 'msvs_settings': { | 959 'msvs_settings': { |
960 'VCLinkerTool': { | 960 'VCLinkerTool': { |
961 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 961 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
962 }, | 962 }, |
963 }, | 963 }, |
964 }, | 964 }, |
965 ], | 965 ], |
966 }, ], # 'OS=="win"' | 966 }, ], # 'OS=="win"' |
967 ], # 'conditions' | 967 ], # 'conditions' |
968 } | 968 } |
OLD | NEW |