OLD | NEW |
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 # GN version: //extensions/common | 11 # GN version: //extensions/common |
12 'target_name': 'extensions_common', | 12 'target_name': 'extensions_common', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 # 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 |
16 # api resources compiled into the chrome resource bundle. | 16 # api resources compiled into the chrome resource bundle. |
17 # http://crbug.com/162530 | 17 # http://crbug.com/162530 |
18 '../chrome/chrome_resources.gyp:chrome_resources', | 18 '../chrome/chrome_resources.gyp:chrome_resources', |
| 19 '../components/components.gyp:crx_file', |
19 '../components/components.gyp:url_matcher', | 20 '../components/components.gyp:url_matcher', |
20 '../content/content.gyp:content_common', | 21 '../content/content.gyp:content_common', |
21 '../crypto/crypto.gyp:crypto', | 22 '../crypto/crypto.gyp:crypto', |
22 # For Mojo generated headers for generated_api.cc. | 23 # For Mojo generated headers for generated_api.cc. |
23 '../device/serial/serial.gyp:device_serial_mojo', | 24 '../device/serial/serial.gyp:device_serial_mojo', |
24 '../ipc/ipc.gyp:ipc', | 25 '../ipc/ipc.gyp:ipc', |
25 '../net/net.gyp:net', | 26 '../net/net.gyp:net', |
26 '../third_party/re2/re2.gyp:re2', | 27 '../third_party/re2/re2.gyp:re2', |
27 '../ui/base/ui_base.gyp:ui_base', | 28 '../ui/base/ui_base.gyp:ui_base', |
28 '../ui/gfx/gfx.gyp:gfx_geometry', | 29 '../ui/gfx/gfx.gyp:gfx_geometry', |
(...skipping 12 matching lines...) Expand all Loading... |
41 'common/api/sockets/sockets_manifest_data.cc', | 42 'common/api/sockets/sockets_manifest_data.cc', |
42 'common/api/sockets/sockets_manifest_data.h', | 43 'common/api/sockets/sockets_manifest_data.h', |
43 'common/api/sockets/sockets_manifest_handler.cc', | 44 'common/api/sockets/sockets_manifest_handler.cc', |
44 'common/api/sockets/sockets_manifest_handler.h', | 45 'common/api/sockets/sockets_manifest_handler.h', |
45 'common/api/sockets/sockets_manifest_permission.cc', | 46 'common/api/sockets/sockets_manifest_permission.cc', |
46 'common/api/sockets/sockets_manifest_permission.h', | 47 'common/api/sockets/sockets_manifest_permission.h', |
47 'common/common_manifest_handlers.cc', | 48 'common/common_manifest_handlers.cc', |
48 'common/common_manifest_handlers.h', | 49 'common/common_manifest_handlers.h', |
49 'common/constants.cc', | 50 'common/constants.cc', |
50 'common/constants.h', | 51 'common/constants.h', |
51 'common/crx_file.cc', | |
52 'common/crx_file.h', | |
53 'common/csp_validator.cc', | 52 'common/csp_validator.cc', |
54 'common/csp_validator.h', | 53 'common/csp_validator.h', |
55 'common/dom_action_types.h', | 54 'common/dom_action_types.h', |
56 'common/draggable_region.cc', | 55 'common/draggable_region.cc', |
57 'common/draggable_region.h', | 56 'common/draggable_region.h', |
58 'common/error_utils.cc', | 57 'common/error_utils.cc', |
59 'common/error_utils.h', | 58 'common/error_utils.h', |
60 'common/event_filter.cc', | 59 'common/event_filter.cc', |
61 'common/event_filter.h', | 60 'common/event_filter.h', |
62 'common/event_filtering_info.cc', | 61 'common/event_filtering_info.cc', |
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
915 'browser/api/cast_channel/logging.proto' | 914 'browser/api/cast_channel/logging.proto' |
916 ], | 915 ], |
917 'variables': { | 916 'variables': { |
918 'proto_in_dir': 'browser/api/cast_channel', | 917 'proto_in_dir': 'browser/api/cast_channel', |
919 'proto_out_dir': 'extensions/browser/api/cast_channel', | 918 'proto_out_dir': 'extensions/browser/api/cast_channel', |
920 }, | 919 }, |
921 'includes': [ '../build/protoc.gypi' ] | 920 'includes': [ '../build/protoc.gypi' ] |
922 }, | 921 }, |
923 ] | 922 ] |
924 } | 923 } |
OLD | NEW |