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

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: Remove comment 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 16 matching lines...) Expand all
27 'safe_browsing_report_proto', 27 'safe_browsing_report_proto',
28 'variations_seed_proto', 28 'variations_seed_proto',
29 '../build/temp_gyp/googleurl.gyp:googleurl', 29 '../build/temp_gyp/googleurl.gyp:googleurl',
30 '../cc/cc.gyp:cc', 30 '../cc/cc.gyp:cc',
31 '../content/content.gyp:content_browser', 31 '../content/content.gyp:content_browser',
32 '../content/content.gyp:content_common', 32 '../content/content.gyp:content_common',
33 '../crypto/crypto.gyp:crypto', 33 '../crypto/crypto.gyp:crypto',
34 '../google_apis/google_apis.gyp:google_apis', 34 '../google_apis/google_apis.gyp:google_apis',
35 '../media/media.gyp:media', 35 '../media/media.gyp:media',
36 '../skia/skia.gyp:skia', 36 '../skia/skia.gyp:skia',
37 '../sync/protocol/sync_proto.gyp:sync_proto', 37 '../sync/sync.gyp:sync_api',
akalin 2012/11/08 01:01:51 here, too. why are you removing these dependencie
Raghu Simha 2012/11/08 22:34:39 Same reasoning as in my comment on sync.gyp. I've
38 # TODO(akalin): Depend only on syncapi_service from sync. 38 '../sync/sync.gyp:sync_internal_api',
39 '../sync/sync.gyp:syncapi_core',
40 '../sync/sync.gyp:syncapi_service',
41 '../sync/sync.gyp:sync_notifier',
42 '../third_party/bzip2/bzip2.gyp:bzip2', 39 '../third_party/bzip2/bzip2.gyp:bzip2',
43 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 40 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
44 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 41 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
45 '../third_party/icu/icu.gyp:icui18n', 42 '../third_party/icu/icu.gyp:icui18n',
46 '../third_party/icu/icu.gyp:icuuc', 43 '../third_party/icu/icu.gyp:icuuc',
47 '../third_party/libusb/libusb.gyp:libusb', 44 '../third_party/libusb/libusb.gyp:libusb',
48 '../third_party/libxml/libxml.gyp:libxml', 45 '../third_party/libxml/libxml.gyp:libxml',
49 '../third_party/zlib/zlib.gyp:minizip', 46 '../third_party/zlib/zlib.gyp:minizip',
50 '../third_party/zlib/zlib.gyp:zlib', 47 '../third_party/zlib/zlib.gyp:zlib',
51 '../ui/base/strings/ui_strings.gyp:ui_strings', 48 '../ui/base/strings/ui_strings.gyp:ui_strings',
52 '../ui/ui.gyp:ui', 49 '../ui/ui.gyp:ui',
53 '../ui/ui.gyp:ui_resources', 50 '../ui/ui.gyp:ui_resources',
54 '../webkit/support/webkit_support.gyp:user_agent', 51 '../webkit/support/webkit_support.gyp:user_agent',
55 ], 52 ],
56 'include_dirs': [ 53 'include_dirs': [
57 '..', 54 '..',
58 '<(INTERMEDIATE_DIR)', 55 '<(INTERMEDIATE_DIR)',
59 # Needed by pepper_flash_component_installer.cc. 56 # Needed by pepper_flash_component_installer.cc.
60 '<(SHARED_INTERMEDIATE_DIR)', 57 '<(SHARED_INTERMEDIATE_DIR)',
61 ], 58 ],
62 'export_dependent_settings': [
63 '../sync/sync.gyp:sync_notifier',
64 ],
65 'sources': [ 59 'sources': [
66 # All .cc, .h, .m, and .mm files under browser except for: 60 # All .cc, .h, .m, and .mm files under browser except for:
67 # * tests and mocks. 61 # * tests and mocks.
68 # * code below browser/chromeos 62 # * code below browser/chromeos
69 # * code below browser/extensions 63 # * code below browser/extensions
70 'browser/about_flags.cc', 64 'browser/about_flags.cc',
71 'browser/about_flags.h', 65 'browser/about_flags.h',
72 'browser/about_flags_android.cc', 66 'browser/about_flags_android.cc',
73 'browser/accessibility/accessibility_extension_api_constants.cc', 67 'browser/accessibility/accessibility_extension_api_constants.cc',
74 'browser/accessibility/accessibility_extension_api_constants.h', 68 'browser/accessibility/accessibility_extension_api_constants.h',
(...skipping 2936 matching lines...) Expand 10 before | Expand all | Expand 10 after
3011 'proto_in_dir': '../third_party/cros_system_api/dbus', 3005 'proto_in_dir': '../third_party/cros_system_api/dbus',
3012 'proto_out_dir': 'chrome/browser/media_transfer_protocol', 3006 'proto_out_dir': 'chrome/browser/media_transfer_protocol',
3013 }, 3007 },
3014 'includes': ['../build/protoc.gypi'], 3008 'includes': ['../build/protoc.gypi'],
3015 }, 3009 },
3016 ], 3010 ],
3017 }, 3011 },
3018 ], 3012 ],
3019 ], 3013 ],
3020 } 3014 }
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