| 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 'target_name': 'extensions_common', | 11 'target_name': 'extensions_common', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 # TODO(benwells): figure out what to do with the api target and | 14 # TODO(benwells): figure out what to do with the api target and |
| 15 # api resources compiled into the chrome resource bundle. | 15 # api resources compiled into the chrome resource bundle. |
| 16 # http://crbug.com/162530 | 16 # http://crbug.com/162530 |
| 17 '../chrome/chrome_resources.gyp:chrome_resources', | 17 '../chrome/chrome_resources.gyp:chrome_resources', |
| 18 '../chrome/common/extensions/api/api.gyp:api', | 18 '../chrome/common/extensions/api/api.gyp:api', |
| 19 '../components/components.gyp:url_matcher', | 19 '../components/components.gyp:url_matcher', |
| 20 '../content/content.gyp:content_common', | 20 '../content/content.gyp:content_common', |
| 21 '../third_party/re2/re2.gyp:re2', | 21 '../third_party/re2/re2.gyp:re2', |
| 22 ], | 22 ], |
| 23 'include_dirs': [ | 23 'include_dirs': [ |
| 24 '..', | 24 '..', |
| 25 '<(INTERMEDIATE_DIR)', | 25 '<(INTERMEDIATE_DIR)', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'common/common_manifest_handlers.cc', |
| 29 'common/common_manifest_handlers.h', |
| 28 'common/crx_file.cc', | 30 'common/crx_file.cc', |
| 29 'common/crx_file.h', | 31 'common/crx_file.h', |
| 30 'common/csp_validator.cc', | 32 'common/csp_validator.cc', |
| 31 'common/csp_validator.h', | 33 'common/csp_validator.h', |
| 32 'common/draggable_region.cc', | 34 'common/draggable_region.cc', |
| 33 'common/draggable_region.h', | 35 'common/draggable_region.h', |
| 34 'common/error_utils.cc', | 36 'common/error_utils.cc', |
| 35 'common/error_utils.h', | 37 'common/error_utils.h', |
| 36 'common/event_filter.cc', | 38 'common/event_filter.cc', |
| 37 'common/event_filter.h', | 39 'common/event_filter.h', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 'browser/quota_service.h', | 202 'browser/quota_service.h', |
| 201 'browser/update_observer.h', | 203 'browser/update_observer.h', |
| 202 'browser/view_type_utils.cc', | 204 'browser/view_type_utils.cc', |
| 203 'browser/view_type_utils.h', | 205 'browser/view_type_utils.h', |
| 204 ], | 206 ], |
| 205 # Disable c4267 warnings until we fix size_t to int truncations. | 207 # Disable c4267 warnings until we fix size_t to int truncations. |
| 206 'msvs_disabled_warnings': [ 4267, ], | 208 'msvs_disabled_warnings': [ 4267, ], |
| 207 }, | 209 }, |
| 208 ] | 210 ] |
| 209 } | 211 } |
| OLD | NEW |