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

Side by Side Diff: chrome/chrome_browser.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: Rebase + Merge + Undo copyright changes Created 7 years, 10 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.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 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', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 17 matching lines...) Expand all
28 'variations_seed_proto', 28 'variations_seed_proto',
29 '../build/temp_gyp/googleurl.gyp:googleurl', 29 '../build/temp_gyp/googleurl.gyp:googleurl',
30 '../components/components.gyp:visitedlink_browser', 30 '../components/components.gyp:visitedlink_browser',
31 '../components/components.gyp:visitedlink_common', 31 '../components/components.gyp:visitedlink_common',
32 '../content/content.gyp:content_browser', 32 '../content/content.gyp:content_browser',
33 '../content/content.gyp:content_common', 33 '../content/content.gyp:content_common',
34 '../crypto/crypto.gyp:crypto', 34 '../crypto/crypto.gyp:crypto',
35 '../google_apis/google_apis.gyp:google_apis', 35 '../google_apis/google_apis.gyp:google_apis',
36 '../media/media.gyp:media', 36 '../media/media.gyp:media',
37 '../skia/skia.gyp:skia', 37 '../skia/skia.gyp:skia',
38 '../sync/protocol/sync_proto.gyp:sync_proto', 38 '../sql/sql.gyp:sql',
39 # TODO(akalin): Depend only on sync_api from sync. 39 '../sync/sync.gyp:sync',
40 '../sync/sync.gyp:sync_api',
41 '../sync/sync.gyp:sync_internal_api',
42 '../sync/sync.gyp:sync_notifier',
43 '../ui/ui.gyp:shell_dialogs',
44 '../third_party/bzip2/bzip2.gyp:bzip2', 40 '../third_party/bzip2/bzip2.gyp:bzip2',
45 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 41 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
46 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 42 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
47 '../third_party/icu/icu.gyp:icui18n', 43 '../third_party/icu/icu.gyp:icui18n',
48 '../third_party/icu/icu.gyp:icuuc', 44 '../third_party/icu/icu.gyp:icuuc',
49 '../third_party/libjingle/libjingle.gyp:libjingle', 45 '../third_party/libjingle/libjingle.gyp:libjingle',
50 '../third_party/libxml/libxml.gyp:libxml', 46 '../third_party/libxml/libxml.gyp:libxml',
51 '../third_party/zlib/zlib.gyp:minizip', 47 '../third_party/zlib/zlib.gyp:minizip',
52 '../third_party/zlib/zlib.gyp:zlib', 48 '../third_party/zlib/zlib.gyp:zlib',
53 '../ui/base/strings/ui_strings.gyp:ui_strings', 49 '../ui/base/strings/ui_strings.gyp:ui_strings',
50 '../ui/ui.gyp:shell_dialogs',
54 '../ui/ui.gyp:ui', 51 '../ui/ui.gyp:ui',
55 '../ui/ui.gyp:ui_resources', 52 '../ui/ui.gyp:ui_resources',
56 '../webkit/support/webkit_support.gyp:user_agent', 53 '../webkit/support/webkit_support.gyp:user_agent',
57 ], 54 ],
58 'include_dirs': [ 55 'include_dirs': [
59 '..', 56 '..',
60 '<(INTERMEDIATE_DIR)', 57 '<(INTERMEDIATE_DIR)',
61 # Needed by pepper_flash_component_installer.cc. 58 # Needed by pepper_flash_component_installer.cc.
62 '<(SHARED_INTERMEDIATE_DIR)', 59 '<(SHARED_INTERMEDIATE_DIR)',
63 ], 60 ],
64 'export_dependent_settings': [ 61 'export_dependent_settings': [
65 '../sync/sync.gyp:sync_notifier', 62 '../sql/sql.gyp:sql',
63 '../sync/sync.gyp:sync',
66 ], 64 ],
67 'sources': [ 65 'sources': [
68 # All .cc, .h, .m, and .mm files under browser except for: 66 # All .cc, .h, .m, and .mm files under browser except for:
69 # * tests and mocks. 67 # * tests and mocks.
70 # * code below browser/chromeos 68 # * code below browser/chromeos
71 # * code below browser/extensions 69 # * code below browser/extensions
72 'browser/about_flags.cc', 70 'browser/about_flags.cc',
73 'browser/about_flags.h', 71 'browser/about_flags.h',
74 'browser/accessibility/accessibility_extension_api_constants.cc', 72 'browser/accessibility/accessibility_extension_api_constants.cc',
75 'browser/accessibility/accessibility_extension_api_constants.h', 73 'browser/accessibility/accessibility_extension_api_constants.h',
(...skipping 3051 matching lines...) Expand 10 before | Expand all | Expand 10 after
3127 'variables': { 3125 'variables': {
3128 'jni_gen_dir': 'chrome', 3126 'jni_gen_dir': 'chrome',
3129 }, 3127 },
3130 'includes': [ '../build/jni_generator.gypi' ], 3128 'includes': [ '../build/jni_generator.gypi' ],
3131 }, 3129 },
3132 ], 3130 ],
3133 }, 3131 },
3134 ], 3132 ],
3135 ], 3133 ],
3136 } 3134 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698