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

Side by Side Diff: extensions/extensions.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 | « components/wallpaper.gypi ('k') | extensions/shell/app_shell.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'includes': [ 6 'includes': [
7 'extensions.gypi', 7 'extensions.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 }], 100 }],
101 ], 101 ],
102 }, 102 },
103 { 103 {
104 # GN version: //extensions/browser 104 # GN version: //extensions/browser
105 'target_name': 'extensions_browser', 105 'target_name': 'extensions_browser',
106 'type': 'static_library', 106 'type': 'static_library',
107 'dependencies': [ 107 'dependencies': [
108 '../base/base.gyp:base', 108 '../base/base.gyp:base',
109 '../base/base.gyp:base_i18n', 109 '../base/base.gyp:base_i18n',
110 '../base/base.gyp:base_prefs',
111 '../components/components.gyp:browsing_data', 110 '../components/components.gyp:browsing_data',
112 '../components/components.gyp:device_event_log_component', 111 '../components/components.gyp:device_event_log_component',
113 '../components/components.gyp:guest_view_browser', 112 '../components/components.gyp:guest_view_browser',
114 '../components/components.gyp:keyed_service_content', 113 '../components/components.gyp:keyed_service_content',
115 '../components/components.gyp:keyed_service_core', 114 '../components/components.gyp:keyed_service_core',
116 '../components/components.gyp:onc_component', 115 '../components/components.gyp:onc_component',
117 '../components/components.gyp:pref_registry', 116 '../components/components.gyp:pref_registry',
118 '../components/components.gyp:sessions_content', 117 '../components/components.gyp:sessions_content',
119 '../components/components.gyp:storage_monitor', 118 '../components/components.gyp:storage_monitor',
120 '../components/components.gyp:ui_zoom', 119 '../components/components.gyp:ui_zoom',
121 '../components/components.gyp:update_client', 120 '../components/components.gyp:update_client',
122 '../components/components.gyp:variations', 121 '../components/components.gyp:variations',
123 '../components/components.gyp:version_info', 122 '../components/components.gyp:version_info',
124 '../components/components.gyp:web_cache_browser', 123 '../components/components.gyp:web_cache_browser',
125 '../components/components.gyp:web_modal', 124 '../components/components.gyp:web_modal',
125 '../components/prefs/prefs.gyp:prefs',
126 '../content/content.gyp:content_browser', 126 '../content/content.gyp:content_browser',
127 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 127 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
128 '../device/serial/serial.gyp:device_serial', 128 '../device/serial/serial.gyp:device_serial',
129 '../google_apis/google_apis.gyp:google_apis', 129 '../google_apis/google_apis.gyp:google_apis',
130 '../skia/skia.gyp:skia', 130 '../skia/skia.gyp:skia',
131 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 131 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
132 '../third_party/re2/re2.gyp:re2', 132 '../third_party/re2/re2.gyp:re2',
133 'browser/api/api_registration.gyp:extensions_api_registration', 133 'browser/api/api_registration.gyp:extensions_api_registration',
134 'common/api/api.gyp:cast_channel_proto', 134 'common/api/api.gyp:cast_channel_proto',
135 'common/api/api.gyp:extensions_api', 135 'common/api/api.gyp:extensions_api',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 'sources': [ 241 'sources': [
242 '<@(extensions_utility_sources)', 242 '<@(extensions_utility_sources)',
243 ], 243 ],
244 }, 244 },
245 { 245 {
246 # GN version: //extensions:test_support 246 # GN version: //extensions:test_support
247 'target_name': 'extensions_test_support', 247 'target_name': 'extensions_test_support',
248 'type': 'static_library', 248 'type': 'static_library',
249 'dependencies': [ 249 'dependencies': [
250 '../base/base.gyp:base', 250 '../base/base.gyp:base',
251 '../base/base.gyp:base_prefs_test_support',
252 '../components/components.gyp:pref_registry_test_support', 251 '../components/components.gyp:pref_registry_test_support',
253 '../components/components.gyp:user_prefs', 252 '../components/components.gyp:user_prefs',
253 '../components/prefs/prefs.gyp:prefs_test_support',
254 '../content/content.gyp:content_browser', 254 '../content/content.gyp:content_browser',
255 '../content/content.gyp:content_common', 255 '../content/content.gyp:content_common',
256 '../content/content_shell_and_tests.gyp:test_support_content', 256 '../content/content_shell_and_tests.gyp:test_support_content',
257 '../net/net.gyp:net_test_support', 257 '../net/net.gyp:net_test_support',
258 '../testing/gtest.gyp:gtest', 258 '../testing/gtest.gyp:gtest',
259 'browser/api/api_registration.gyp:extensions_api_registration', 259 'browser/api/api_registration.gyp:extensions_api_registration',
260 'common/api/api.gyp:cast_channel_proto', 260 'common/api/api.gyp:cast_channel_proto',
261 'common/api/api.gyp:extensions_api', 261 'common/api/api.gyp:extensions_api',
262 'extensions_browser', 262 'extensions_browser',
263 'extensions_common', 263 'extensions_common',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', 318 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
319 ], 319 ],
320 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 320 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
321 }, 321 },
322 'includes': [ '../build/repack_action.gypi' ], 322 'includes': [ '../build/repack_action.gypi' ],
323 }, 323 },
324 ], 324 ],
325 }, 325 },
326 ] 326 ]
327 } 327 }
OLDNEW
« no previous file with comments | « components/wallpaper.gypi ('k') | extensions/shell/app_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698