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

Side by Side Diff: extensions/extensions.gyp

Issue 489153003: Split bundle generation steps so that API registration is generated in browser, not common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extra targets Created 6 years, 4 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
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 {
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 '../base/base.gyp:base_prefs', 254 '../base/base.gyp:base_prefs',
255 '../components/components.gyp:keyed_service_content', 255 '../components/components.gyp:keyed_service_content',
256 '../components/components.gyp:keyed_service_core', 256 '../components/components.gyp:keyed_service_core',
257 '../components/components.gyp:pref_registry', 257 '../components/components.gyp:pref_registry',
258 '../components/components.gyp:usb_service', 258 '../components/components.gyp:usb_service',
259 '../components/components.gyp:web_modal', 259 '../components/components.gyp:web_modal',
260 '../content/content.gyp:content_browser', 260 '../content/content.gyp:content_browser',
261 '../device/serial/serial.gyp:device_serial', 261 '../device/serial/serial.gyp:device_serial',
262 '../skia/skia.gyp:skia', 262 '../skia/skia.gyp:skia',
263 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 263 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
264 'browser/api/api_registration.gyp:extensions_api_registration',
264 'cast_channel_proto', 265 'cast_channel_proto',
265 'common/api/api.gyp:extensions_api', 266 'common/api/api.gyp:extensions_api',
266 'extensions_common', 267 'extensions_common',
267 'extensions_strings.gyp:extensions_strings', 268 'extensions_strings.gyp:extensions_strings',
268 ], 269 ],
269 'include_dirs': [ 270 'include_dirs': [
270 '..', 271 '..',
271 '<(INTERMEDIATE_DIR)', 272 '<(INTERMEDIATE_DIR)',
272 # Needed to access generated API headers. 273 # Needed to access generated API headers.
273 '<(SHARED_INTERMEDIATE_DIR)', 274 '<(SHARED_INTERMEDIATE_DIR)',
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 ] 739 ]
739 }, 740 },
740 { 741 {
741 # GN version: //extensions:test_support 742 # GN version: //extensions:test_support
742 'target_name': 'extensions_test_support', 743 'target_name': 'extensions_test_support',
743 'type': 'static_library', 744 'type': 'static_library',
744 'dependencies': [ 745 'dependencies': [
745 '../base/base.gyp:base', 746 '../base/base.gyp:base',
746 '../net/net.gyp:net_test_support', 747 '../net/net.gyp:net_test_support',
747 '../testing/gtest.gyp:gtest', 748 '../testing/gtest.gyp:gtest',
749 'browser/api/api_registration.gyp:extensions_api_registration',
748 'common/api/api.gyp:extensions_api', 750 'common/api/api.gyp:extensions_api',
749 'extensions_browser', 751 'extensions_browser',
750 'extensions_common', 752 'extensions_common',
751 'extensions_resources.gyp:extensions_resources', 753 'extensions_resources.gyp:extensions_resources',
752 ], 754 ],
753 'include_dirs': [ 755 'include_dirs': [
754 '..', 756 '..',
755 '<(SHARED_INTERMEDIATE_DIR)', 757 '<(SHARED_INTERMEDIATE_DIR)',
756 ], 758 ],
757 'sources': [ 759 'sources': [
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 'browser/api/cast_channel/logging.proto' 944 'browser/api/cast_channel/logging.proto'
943 ], 945 ],
944 'variables': { 946 'variables': {
945 'proto_in_dir': 'browser/api/cast_channel', 947 'proto_in_dir': 'browser/api/cast_channel',
946 'proto_out_dir': 'extensions/browser/api/cast_channel', 948 'proto_out_dir': 'extensions/browser/api/cast_channel',
947 }, 949 },
948 'includes': [ '../build/protoc.gypi' ] 950 'includes': [ '../build/protoc.gypi' ]
949 }, 951 },
950 ] 952 ]
951 } 953 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698