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 '../chrome/common/extensions/api/api.gyp:chrome_api', | 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', |
| 32 'common/api/sockets/sockets_manifest_handler.h', |
| 33 'common/api/sockets/sockets_manifest_data.cc', |
| 34 'common/api/sockets/sockets_manifest_data.h', |
| 35 'common/api/sockets/sockets_manifest_permission.cc', |
| 36 'common/api/sockets/sockets_manifest_permission.h', |
31 'common/common_manifest_handlers.cc', | 37 'common/common_manifest_handlers.cc', |
32 'common/common_manifest_handlers.h', | 38 'common/common_manifest_handlers.h', |
33 'common/crx_file.cc', | 39 'common/crx_file.cc', |
34 'common/crx_file.h', | 40 'common/crx_file.h', |
35 'common/csp_validator.cc', | 41 'common/csp_validator.cc', |
36 'common/csp_validator.h', | 42 'common/csp_validator.h', |
37 'common/draggable_region.cc', | 43 'common/draggable_region.cc', |
38 'common/draggable_region.h', | 44 'common/draggable_region.h', |
39 'common/error_utils.cc', | 45 'common/error_utils.cc', |
40 'common/error_utils.h', | 46 'common/error_utils.h', |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 'common/test_util.cc', | 384 'common/test_util.cc', |
379 'common/test_util.h', | 385 'common/test_util.h', |
380 'common/value_builder.cc', | 386 'common/value_builder.cc', |
381 'common/value_builder.h', | 387 'common/value_builder.h', |
382 ], | 388 ], |
383 # Disable c4267 warnings until we fix size_t to int truncations. | 389 # Disable c4267 warnings until we fix size_t to int truncations. |
384 'msvs_disabled_warnings': [ 4267, ], | 390 'msvs_disabled_warnings': [ 4267, ], |
385 }, | 391 }, |
386 ] | 392 ] |
387 } | 393 } |
OLD | NEW |