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

Side by Side Diff: ios/chrome/ios_chrome.gyp

Issue 1648403002: Move base/prefs to components/prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « extensions/shell/app_shell.gyp ('k') | ios/chrome/ios_chrome_tests.gyp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 26 matching lines...) Expand all
37 }, 37 },
38 { 38 {
39 # GN version: //ios/chrome/browser 39 # GN version: //ios/chrome/browser
40 'target_name': 'ios_chrome_browser', 40 'target_name': 'ios_chrome_browser',
41 'type': 'static_library', 41 'type': 'static_library',
42 'include_dirs': [ 42 'include_dirs': [
43 '../..', 43 '../..',
44 ], 44 ],
45 'dependencies': [ 45 'dependencies': [
46 '../../base/base.gyp:base', 46 '../../base/base.gyp:base',
47 '../../base/base.gyp:base_prefs',
48 '../../breakpad/breakpad.gyp:breakpad_client', 47 '../../breakpad/breakpad.gyp:breakpad_client',
49 '../../components/components.gyp:language_usage_metrics', 48 '../../components/components.gyp:language_usage_metrics',
50 '../../components/components.gyp:about_handler', 49 '../../components/components.gyp:about_handler',
51 '../../components/components.gyp:autofill_core_browser', 50 '../../components/components.gyp:autofill_core_browser',
52 '../../components/components.gyp:autofill_core_common', 51 '../../components/components.gyp:autofill_core_common',
53 '../../components/components.gyp:autofill_ios_browser', 52 '../../components/components.gyp:autofill_ios_browser',
54 '../../components/components.gyp:bookmarks_browser', 53 '../../components/components.gyp:bookmarks_browser',
55 '../../components/components.gyp:browser_sync_browser', 54 '../../components/components.gyp:browser_sync_browser',
56 '../../components/components.gyp:browser_sync_common', 55 '../../components/components.gyp:browser_sync_common',
57 '../../components/components.gyp:certificate_reporting', 56 '../../components/components.gyp:certificate_reporting',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '../../components/components.gyp:upload_list', 110 '../../components/components.gyp:upload_list',
112 '../../components/components.gyp:variations', 111 '../../components/components.gyp:variations',
113 '../../components/components.gyp:variations_service', 112 '../../components/components.gyp:variations_service',
114 '../../components/components.gyp:version_info', 113 '../../components/components.gyp:version_info',
115 '../../components/components.gyp:version_ui', 114 '../../components/components.gyp:version_ui',
116 '../../components/components.gyp:web_resource', 115 '../../components/components.gyp:web_resource',
117 '../../components/components.gyp:webdata_services', 116 '../../components/components.gyp:webdata_services',
118 '../../components/components.gyp:webp_transcode', 117 '../../components/components.gyp:webp_transcode',
119 '../../components/components_resources.gyp:components_resources', 118 '../../components/components_resources.gyp:components_resources',
120 '../../components/components_strings.gyp:components_strings', 119 '../../components/components_strings.gyp:components_strings',
120 '../../components/prefs/prefs.gyp:prefs',
121 '../../components/url_formatter/url_formatter.gyp:url_formatter', 121 '../../components/url_formatter/url_formatter.gyp:url_formatter',
122 '../../google_apis/google_apis.gyp:google_apis', 122 '../../google_apis/google_apis.gyp:google_apis',
123 '../../net/net.gyp:net', 123 '../../net/net.gyp:net',
124 '../../skia/skia.gyp:skia', 124 '../../skia/skia.gyp:skia',
125 '../../sync/sync.gyp:sync', 125 '../../sync/sync.gyp:sync',
126 '../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:goo gle_toolbox_for_mac', 126 '../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:goo gle_toolbox_for_mac',
127 '../../ui/base/ui_base.gyp:ui_base', 127 '../../ui/base/ui_base.gyp:ui_base',
128 '../../ui/gfx/gfx.gyp:gfx', 128 '../../ui/gfx/gfx.gyp:gfx',
129 '../../url/url.gyp:url_lib', 129 '../../url/url.gyp:url_lib',
130 '../provider/ios_provider_chrome.gyp:ios_provider_chrome_browser', 130 '../provider/ios_provider_chrome.gyp:ios_provider_chrome_browser',
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 'variables': { 859 'variables': {
860 'proto_in_dir': 'browser/safe_browsing', 860 'proto_in_dir': 'browser/safe_browsing',
861 'proto_out_dir': 'ios/chrome/browser/safe_browsing', 861 'proto_out_dir': 'ios/chrome/browser/safe_browsing',
862 }, 862 },
863 'includes': [ '../../build/protoc.gypi' ], 863 'includes': [ '../../build/protoc.gypi' ],
864 }, 864 },
865 ], 865 ],
866 }], 866 }],
867 ], 867 ],
868 } 868 }
OLDNEW
« no previous file with comments | « extensions/shell/app_shell.gyp ('k') | ios/chrome/ios_chrome_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698