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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 11348052: [sync] Componentize sync: Part 1: Clean up sync.gyp and update chrome / test dependencies (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 25 matching lines...) Expand all
36 '../build/temp_gyp/googleurl.gyp:googleurl', 36 '../build/temp_gyp/googleurl.gyp:googleurl',
37 '../content/content.gyp:content_browser', 37 '../content/content.gyp:content_browser',
38 '../content/content.gyp:content_common', 38 '../content/content.gyp:content_common',
39 '../crypto/crypto.gyp:crypto', 39 '../crypto/crypto.gyp:crypto',
40 '../google_apis/google_apis.gyp:google_apis', 40 '../google_apis/google_apis.gyp:google_apis',
41 '../media/media.gyp:media', 41 '../media/media.gyp:media',
42 '../net/net.gyp:net_with_v8', 42 '../net/net.gyp:net_with_v8',
43 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin 43 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin
44 '../printing/printing.gyp:printing', 44 '../printing/printing.gyp:printing',
45 '../skia/skia.gyp:skia', 45 '../skia/skia.gyp:skia',
46 '../sync/protocol/sync_proto.gyp:sync_proto', 46 '../sync/sync.gyp:sync_api',
47 # TODO(akalin): Depend only on syncapi_service from sync. 47 '../sync/sync.gyp:sync_internal_api',
48 '../sync/sync.gyp:syncapi_core',
49 '../sync/sync.gyp:syncapi_service',
50 '../sync/sync.gyp:sync_notifier',
51 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', 48 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h',
52 '../third_party/bzip2/bzip2.gyp:bzip2', 49 '../third_party/bzip2/bzip2.gyp:bzip2',
53 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 50 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
54 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 51 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
55 '../third_party/cld/cld.gyp:cld', 52 '../third_party/cld/cld.gyp:cld',
56 '../third_party/expat/expat.gyp:expat', 53 '../third_party/expat/expat.gyp:expat',
57 '../third_party/hunspell/hunspell.gyp:hunspell', 54 '../third_party/hunspell/hunspell.gyp:hunspell',
58 '../third_party/icu/icu.gyp:icui18n', 55 '../third_party/icu/icu.gyp:icui18n',
59 '../third_party/icu/icu.gyp:icuuc', 56 '../third_party/icu/icu.gyp:icuuc',
60 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 57 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
(...skipping 23 matching lines...) Expand all
84 '<(SHARED_INTERMEDIATE_DIR)', 81 '<(SHARED_INTERMEDIATE_DIR)',
85 ], 82 ],
86 'defines': [ 83 'defines': [
87 '<@(nacl_defines)', 84 '<@(nacl_defines)',
88 ], 85 ],
89 'direct_dependent_settings': { 86 'direct_dependent_settings': {
90 'defines': [ 87 'defines': [
91 '<@(nacl_defines)', 88 '<@(nacl_defines)',
92 ], 89 ],
93 }, 90 },
94 'export_dependent_settings': [
95 '../sync/sync.gyp:sync_notifier',
96 ],
97 'sources': [ 91 'sources': [
98 # All .cc, .h, .m, and .mm files under browser except for: 92 # All .cc, .h, .m, and .mm files under browser except for:
99 # * tests and mocks. 93 # * tests and mocks.
100 # * code below browser/chromeos 94 # * code below browser/chromeos
101 # * code below browser/extensions 95 # * code below browser/extensions
102 'browser/about_flags.cc', 96 'browser/about_flags.cc',
103 'browser/about_flags.h', 97 'browser/about_flags.h',
104 'browser/about_flags_android.cc', 98 'browser/about_flags_android.cc',
105 'browser/accessibility/accessibility_extension_api_constants.cc', 99 'browser/accessibility/accessibility_extension_api_constants.cc',
106 'browser/accessibility/accessibility_extension_api_constants.h', 100 'browser/accessibility/accessibility_extension_api_constants.h',
(...skipping 2863 matching lines...) Expand 10 before | Expand all | Expand 10 after
2970 'proto_in_dir': '../third_party/cros_system_api/dbus', 2964 'proto_in_dir': '../third_party/cros_system_api/dbus',
2971 'proto_out_dir': 'chrome/browser/media_transfer_protocol', 2965 'proto_out_dir': 'chrome/browser/media_transfer_protocol',
2972 }, 2966 },
2973 'includes': ['../build/protoc.gypi'], 2967 'includes': ['../build/protoc.gypi'],
2974 }, 2968 },
2975 ], 2969 ],
2976 }, 2970 },
2977 ], 2971 ],
2978 ], 2972 ],
2979 } 2973 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | sync/sync.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698