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

Side by Side Diff: trunk/src/extensions/extensions.gyp

Issue 224963002: Revert 261559 "Create new app_shell.gyp for app_shell targets." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 8 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 | « trunk/src/build/all.gyp ('k') | no next file » | 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'extensions_common', 11 'target_name': 'extensions_common',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 'common/api/api.gyp:extensions_api',
15 '../third_party/re2/re2.gyp:re2', 14 '../third_party/re2/re2.gyp:re2',
16 # TODO(benwells): figure out what to do with the api target and 15 # TODO(benwells): figure out what to do with the api target and
17 # api resources compiled into the chrome resource bundle. 16 # api resources compiled into the chrome resource bundle.
18 # http://crbug.com/162530 17 # http://crbug.com/162530
19 '../chrome/chrome_resources.gyp:chrome_resources', 18 '../chrome/chrome_resources.gyp:chrome_resources',
20 # TODO(jamescook|derat): Pull strings into extensions module. 19 # TODO(jamescook|derat): Pull strings into extensions module.
21 '../chrome/chrome_resources.gyp:chrome_strings', 20 '../chrome/chrome_resources.gyp:chrome_strings',
21 '../chrome/common/extensions/api/api.gyp:chrome_api',
22 '../components/components.gyp:url_matcher', 22 '../components/components.gyp:url_matcher',
23 '../content/content.gyp:content_common', 23 '../content/content.gyp:content_common',
24 ], 24 ],
25 'include_dirs': [ 25 'include_dirs': [
26 '..', 26 '..',
27 '<(INTERMEDIATE_DIR)', 27 '<(INTERMEDIATE_DIR)',
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'common/api/messaging/message.h', 30 'common/api/messaging/message.h',
31 'common/api/sockets/sockets_manifest_handler.cc', 31 'common/api/sockets/sockets_manifest_handler.cc',
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 ], 190 ],
191 }, 191 },
192 { 192 {
193 'target_name': 'extensions_browser', 193 'target_name': 'extensions_browser',
194 'type': 'static_library', 194 'type': 'static_library',
195 'dependencies': [ 195 'dependencies': [
196 'extensions_common', 196 'extensions_common',
197 'common/api/api.gyp:extensions_api', 197 'common/api/api.gyp:extensions_api',
198 # TODO(jamescook|derat): Pull strings into extensions module. 198 # TODO(jamescook|derat): Pull strings into extensions module.
199 '../chrome/chrome_resources.gyp:chrome_strings', 199 '../chrome/chrome_resources.gyp:chrome_strings',
200 '../components/components.gyp:keyed_service_content', 200 '../chrome/common/extensions/api/api.gyp:chrome_api',
201 '../content/content.gyp:content_browser', 201 '../content/content.gyp:content_browser',
202 '../skia/skia.gyp:skia', 202 '../skia/skia.gyp:skia',
203 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 203 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
204 ], 204 ],
205 'include_dirs': [ 205 'include_dirs': [
206 '..', 206 '..',
207 '<(INTERMEDIATE_DIR)', 207 '<(INTERMEDIATE_DIR)',
208 # Needed to access generated API headers. 208 # Needed to access generated API headers.
209 '<(SHARED_INTERMEDIATE_DIR)', 209 '<(SHARED_INTERMEDIATE_DIR)',
210 # Needed for grit. 210 # Needed for grit.
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 'common/test_util.cc', 402 'common/test_util.cc',
403 'common/test_util.h', 403 'common/test_util.h',
404 'common/value_builder.cc', 404 'common/value_builder.cc',
405 'common/value_builder.h', 405 'common/value_builder.h',
406 ], 406 ],
407 # Disable c4267 warnings until we fix size_t to int truncations. 407 # Disable c4267 warnings until we fix size_t to int truncations.
408 'msvs_disabled_warnings': [ 4267, ], 408 'msvs_disabled_warnings': [ 4267, ],
409 }, 409 },
410 ] 410 ]
411 } 411 }
OLDNEW
« no previous file with comments | « trunk/src/build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698