| 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 30 matching lines...) Expand all Loading... |
| 41 'common/event_filter.h', | 41 'common/event_filter.h', |
| 42 'common/event_filtering_info.cc', | 42 'common/event_filtering_info.cc', |
| 43 'common/event_filtering_info.h', | 43 'common/event_filtering_info.h', |
| 44 'common/event_matcher.cc', | 44 'common/event_matcher.cc', |
| 45 'common/event_matcher.h', | 45 'common/event_matcher.h', |
| 46 'common/extension.cc', | 46 'common/extension.cc', |
| 47 'common/extension.h', | 47 'common/extension.h', |
| 48 'common/extension_api.cc', | 48 'common/extension_api.cc', |
| 49 'common/extension_api.h', | 49 'common/extension_api.h', |
| 50 'common/extension_api_stub.cc', | 50 'common/extension_api_stub.cc', |
| 51 'common/extension_message_generator.cc', |
| 52 'common/extension_message_generator.h', |
| 53 'common/extension_messages.cc', |
| 54 'common/extension_messages.h', |
| 51 'common/extension_paths.cc', | 55 'common/extension_paths.cc', |
| 52 'common/extension_paths.h', | 56 'common/extension_paths.h', |
| 53 'common/extension_resource.cc', | 57 'common/extension_resource.cc', |
| 54 'common/extension_resource.h', | 58 'common/extension_resource.h', |
| 55 'common/extension_set.cc', | 59 'common/extension_set.cc', |
| 56 'common/extension_set.h', | 60 'common/extension_set.h', |
| 57 'common/extension_urls.cc', | 61 'common/extension_urls.cc', |
| 58 'common/extension_urls.h', | 62 'common/extension_urls.h', |
| 59 'common/extensions_client.cc', | 63 'common/extensions_client.cc', |
| 60 'common/extensions_client.h', | 64 'common/extensions_client.h', |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 'common/test_util.cc', | 310 'common/test_util.cc', |
| 307 'common/test_util.h', | 311 'common/test_util.h', |
| 308 'common/value_builder.cc', | 312 'common/value_builder.cc', |
| 309 'common/value_builder.h', | 313 'common/value_builder.h', |
| 310 ], | 314 ], |
| 311 # Disable c4267 warnings until we fix size_t to int truncations. | 315 # Disable c4267 warnings until we fix size_t to int truncations. |
| 312 'msvs_disabled_warnings': [ 4267, ], | 316 'msvs_disabled_warnings': [ 4267, ], |
| 313 }, | 317 }, |
| 314 ] | 318 ] |
| 315 } | 319 } |
| OLD | NEW |