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 { |
(...skipping 10 matching lines...) Expand all Loading... |
21 '../crypto/crypto.gyp:crypto', | 21 '../crypto/crypto.gyp:crypto', |
22 # For Mojo generated headers for generated_api.cc. | 22 # For Mojo generated headers for generated_api.cc. |
23 '../device/serial/serial.gyp:device_serial_mojo', | 23 '../device/serial/serial.gyp:device_serial_mojo', |
24 '../ipc/ipc.gyp:ipc', | 24 '../ipc/ipc.gyp:ipc', |
25 '../net/net.gyp:net', | 25 '../net/net.gyp:net', |
26 '../third_party/re2/re2.gyp:re2', | 26 '../third_party/re2/re2.gyp:re2', |
27 '../ui/base/ui_base.gyp:ui_base', | 27 '../ui/base/ui_base.gyp:ui_base', |
28 '../ui/gfx/gfx.gyp:gfx_geometry', | 28 '../ui/gfx/gfx.gyp:gfx_geometry', |
29 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 29 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
30 '../url/url.gyp:url_lib', | 30 '../url/url.gyp:url_lib', |
| 31 '../third_party/libxml/libxml.gyp:libxml', |
31 'common/api/api.gyp:extensions_api', | 32 'common/api/api.gyp:extensions_api', |
32 'extensions_strings.gyp:extensions_strings', | 33 'extensions_strings.gyp:extensions_strings', |
33 ], | 34 ], |
34 'include_dirs': [ | 35 'include_dirs': [ |
35 '..', | 36 '..', |
36 '<(INTERMEDIATE_DIR)', | 37 '<(INTERMEDIATE_DIR)', |
37 ], | 38 ], |
38 'sources': [ | 39 'sources': [ |
39 'common/api/messaging/message.h', | 40 'common/api/messaging/message.h', |
40 'common/api/sockets/sockets_manifest_data.cc', | 41 'common/api/sockets/sockets_manifest_data.cc', |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'common/permissions/usb_device_permission_data.cc', | 196 'common/permissions/usb_device_permission_data.cc', |
196 'common/permissions/usb_device_permission_data.h', | 197 'common/permissions/usb_device_permission_data.h', |
197 'common/stack_frame.cc', | 198 'common/stack_frame.cc', |
198 'common/stack_frame.h', | 199 'common/stack_frame.h', |
199 'common/switches.cc', | 200 'common/switches.cc', |
200 'common/switches.h', | 201 'common/switches.h', |
201 'common/url_pattern.cc', | 202 'common/url_pattern.cc', |
202 'common/url_pattern.h', | 203 'common/url_pattern.h', |
203 'common/url_pattern_set.cc', | 204 'common/url_pattern_set.cc', |
204 'common/url_pattern_set.h', | 205 'common/url_pattern_set.h', |
| 206 'common/update_manifest.cc', |
| 207 'common/update_manifest.h', |
205 'common/user_script.cc', | 208 'common/user_script.cc', |
206 'common/user_script.h', | 209 'common/user_script.h', |
207 'common/value_counter.cc', | 210 'common/value_counter.cc', |
208 'common/value_counter.h', | 211 'common/value_counter.h', |
209 'common/view_type.cc', | 212 'common/view_type.cc', |
210 'common/view_type.h', | 213 'common/view_type.h', |
211 ], | 214 ], |
212 # Disable c4267 warnings until we fix size_t to int truncations. | 215 # Disable c4267 warnings until we fix size_t to int truncations. |
213 'msvs_disabled_warnings': [ 4267, ], | 216 'msvs_disabled_warnings': [ 4267, ], |
214 'conditions': [ | 217 'conditions': [ |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 'type': 'static_library', | 898 'type': 'static_library', |
896 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], | 899 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], |
897 'variables': { | 900 'variables': { |
898 'proto_in_dir': 'browser/api/cast_channel', | 901 'proto_in_dir': 'browser/api/cast_channel', |
899 'proto_out_dir': 'extensions/browser/api/cast_channel', | 902 'proto_out_dir': 'extensions/browser/api/cast_channel', |
900 }, | 903 }, |
901 'includes': [ '../build/protoc.gypi' ] | 904 'includes': [ '../build/protoc.gypi' ] |
902 }, | 905 }, |
903 ] | 906 ] |
904 } | 907 } |
OLD | NEW |