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

Side by Side Diff: chrome/chrome_browser_ui.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_browser_extensions.gypi ('k') | chrome/chrome_tests.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_ui', 8 'target_name': 'browser_ui',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 18 matching lines...) Expand all
29 'safe_browsing_report_proto', 29 'safe_browsing_report_proto',
30 'feedback_proto', 30 'feedback_proto',
31 'variations_seed_proto', 31 'variations_seed_proto',
32 '../build/temp_gyp/googleurl.gyp:googleurl', 32 '../build/temp_gyp/googleurl.gyp:googleurl',
33 '../components/components.gyp:auto_login_parser', 33 '../components/components.gyp:auto_login_parser',
34 '../content/content.gyp:content_browser', 34 '../content/content.gyp:content_browser',
35 '../content/content.gyp:content_common', 35 '../content/content.gyp:content_common',
36 '../crypto/crypto.gyp:crypto', 36 '../crypto/crypto.gyp:crypto',
37 '../media/media.gyp:media', 37 '../media/media.gyp:media',
38 '../skia/skia.gyp:skia', 38 '../skia/skia.gyp:skia',
39 '../sync/protocol/sync_proto.gyp:sync_proto', 39 '../sync/sync.gyp:sync',
40 # TODO(akalin): Depend only on sync_api from sync.
41 '../sync/sync.gyp:sync_api',
42 '../sync/sync.gyp:sync_internal_api',
43 '../sync/sync.gyp:sync_notifier',
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/libusb/libusb.gyp:libusb', 45 '../third_party/libusb/libusb.gyp:libusb',
50 '../third_party/libxml/libxml.gyp:libxml', 46 '../third_party/libxml/libxml.gyp:libxml',
51 '../third_party/zlib/zlib.gyp:zlib', 47 '../third_party/zlib/zlib.gyp:zlib',
52 '../ui/base/strings/ui_strings.gyp:ui_strings', 48 '../ui/base/strings/ui_strings.gyp:ui_strings',
53 '../ui/native_theme/native_theme.gyp:native_theme', 49 '../ui/native_theme/native_theme.gyp:native_theme',
54 '../ui/snapshot/snapshot.gyp:snapshot', 50 '../ui/snapshot/snapshot.gyp:snapshot',
55 '../ui/ui.gyp:ui', 51 '../ui/ui.gyp:ui',
56 '../ui/ui.gyp:ui_resources', 52 '../ui/ui.gyp:ui_resources',
57 '../webkit/support/webkit_support.gyp:user_agent', 53 '../webkit/support/webkit_support.gyp:user_agent',
58 ], 54 ],
59 'include_dirs': [ 55 'include_dirs': [
60 '..', 56 '..',
61 '<(INTERMEDIATE_DIR)', 57 '<(INTERMEDIATE_DIR)',
62 # Needed by pepper_flash_component_installer.cc. 58 # Needed by pepper_flash_component_installer.cc.
63 '<(SHARED_INTERMEDIATE_DIR)', 59 '<(SHARED_INTERMEDIATE_DIR)',
64 ], 60 ],
65 'export_dependent_settings': [ 61 'export_dependent_settings': [
66 '../sync/sync.gyp:sync_notifier', 62 '../sync/sync.gyp:sync',
67 ], 63 ],
68 'sources': [ 64 'sources': [
69 # All .cc, .h, .m, and .mm files under browser/ui except for: 65 # All .cc, .h, .m, and .mm files under browser/ui except for:
70 # * tests and mocks. 66 # * tests and mocks.
71 'browser/ui/alternate_error_tab_observer.cc', 67 'browser/ui/alternate_error_tab_observer.cc',
72 'browser/ui/alternate_error_tab_observer.h', 68 'browser/ui/alternate_error_tab_observer.h',
73 'browser/ui/android/android_about_app_info.cc', 69 'browser/ui/android/android_about_app_info.cc',
74 'browser/ui/android/android_about_app_info.h', 70 'browser/ui/android/android_about_app_info.h',
75 'browser/ui/android/autofill/autofill_popup_view_android.cc', 71 'browser/ui/android/autofill/autofill_popup_view_android.cc',
76 'browser/ui/android/autofill/autofill_popup_view_android.h', 72 'browser/ui/android/autofill/autofill_popup_view_android.h',
(...skipping 2720 matching lines...) Expand 10 before | Expand all | Expand 10 after
2797 }], 2793 }],
2798 ['enable_message_center==1', { 2794 ['enable_message_center==1', {
2799 'dependencies': [ 2795 'dependencies': [
2800 '../ui/message_center/message_center.gyp:message_center', 2796 '../ui/message_center/message_center.gyp:message_center',
2801 ], 2797 ],
2802 }], 2798 }],
2803 ], 2799 ],
2804 }, 2800 },
2805 ], 2801 ],
2806 } 2802 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698