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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 10805046: [Sync] Make the 'sync' target the one clients should use (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix some comments Created 8 years, 5 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 '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 'app/policy/cloud_policy_codegen.gyp:policy', 17 'app/policy/cloud_policy_codegen.gyp:policy',
18 '../sync/protocol/sync_proto.gyp:sync_proto',
19 'chrome_resources.gyp:chrome_extra_resources', 18 'chrome_resources.gyp:chrome_extra_resources',
20 'chrome_resources.gyp:chrome_resources', 19 'chrome_resources.gyp:chrome_resources',
21 'chrome_resources.gyp:chrome_strings', 20 'chrome_resources.gyp:chrome_strings',
22 'chrome_resources.gyp:platform_locale_settings', 21 'chrome_resources.gyp:platform_locale_settings',
23 'chrome_resources.gyp:theme_resources', 22 'chrome_resources.gyp:theme_resources',
24 'common', 23 'common',
25 'common/extensions/api/api.gyp:api', 24 'common/extensions/api/api.gyp:api',
26 'common_net', 25 'common_net',
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 '../net/net.gyp:net', 32 '../net/net.gyp:net',
34 '../skia/skia.gyp:skia', 33 '../skia/skia.gyp:skia',
35 '../sync/sync.gyp:sync_notifier', 34 '../sync/sync.gyp:sync',
36 '../third_party/bzip2/bzip2.gyp:bzip2', 35 '../third_party/bzip2/bzip2.gyp:bzip2',
37 '../third_party/icu/icu.gyp:icui18n', 36 '../third_party/icu/icu.gyp:icui18n',
38 '../third_party/icu/icu.gyp:icuuc', 37 '../third_party/icu/icu.gyp:icuuc',
39 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 38 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
40 '../third_party/libusb/libusb.gyp:libusb', 39 '../third_party/libusb/libusb.gyp:libusb',
41 '../ui/base/strings/ui_strings.gyp:ui_strings', 40 '../ui/base/strings/ui_strings.gyp:ui_strings',
42 '../ui/ui.gyp:ui', 41 '../ui/ui.gyp:ui',
43 '../ui/ui.gyp:ui_resources', 42 '../ui/ui.gyp:ui_resources',
44 '../webkit/support/webkit_support.gyp:appcache', 43 '../webkit/support/webkit_support.gyp:appcache',
45 '../webkit/support/webkit_support.gyp:blob', 44 '../webkit/support/webkit_support.gyp:blob',
46 '../webkit/support/webkit_support.gyp:database', 45 '../webkit/support/webkit_support.gyp:database',
47 '../webkit/support/webkit_support.gyp:fileapi', 46 '../webkit/support/webkit_support.gyp:fileapi',
48 '../webkit/support/webkit_support.gyp:glue', 47 '../webkit/support/webkit_support.gyp:glue',
49 '../webkit/support/webkit_support.gyp:quota', 48 '../webkit/support/webkit_support.gyp:quota',
50 '../webkit/support/webkit_support.gyp:webkit_resources', 49 '../webkit/support/webkit_support.gyp:webkit_resources',
51 '../webkit/support/webkit_support.gyp:webkit_user_agent', 50 '../webkit/support/webkit_support.gyp:webkit_user_agent',
52 ], 51 ],
52 'export_dependent_settings': [
53 '../sync/sync.gyp:sync',
54 ],
53 'include_dirs': [ 55 'include_dirs': [
54 '..', 56 '..',
55 '<(INTERMEDIATE_DIR)', 57 '<(INTERMEDIATE_DIR)',
56 ], 58 ],
57 'sources': [ 59 'sources': [
58 # All .cc, .h, .m, and .mm files under browser/extensions except for 60 # All .cc, .h, .m, and .mm files under browser/extensions except for
59 # tests and mocks. 61 # tests and mocks.
60 'browser/extensions/active_tab_permission_manager.cc', 62 'browser/extensions/active_tab_permission_manager.cc',
61 'browser/extensions/active_tab_permission_manager.h', 63 'browser/extensions/active_tab_permission_manager.h',
62 'browser/extensions/admin_policy.cc', 64 'browser/extensions/admin_policy.cc',
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 'sources': [ 747 'sources': [
746 'browser/extensions/app_host.rc', 748 'browser/extensions/app_host.rc',
747 'browser/extensions/app_host_stub_main.cc', 749 'browser/extensions/app_host_stub_main.cc',
748 ], 750 ],
749 }, 751 },
750 ], 752 ],
751 }, ], # 'OS=="win"' 753 }, ], # 'OS=="win"'
752 ], # 'conditions' 754 ], # 'conditions'
753 } 755 }
754 756
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_tests.gypi » ('j') | chrome/chrome_tests.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698