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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'common/event_filter.h', | 42 'common/event_filter.h', |
43 'common/event_filtering_info.cc', | 43 'common/event_filtering_info.cc', |
44 'common/event_filtering_info.h', | 44 'common/event_filtering_info.h', |
45 'common/event_matcher.cc', | 45 'common/event_matcher.cc', |
46 'common/event_matcher.h', | 46 'common/event_matcher.h', |
47 'common/extension.cc', | 47 'common/extension.cc', |
48 'common/extension.h', | 48 'common/extension.h', |
49 'common/extension_api.cc', | 49 'common/extension_api.cc', |
50 'common/extension_api.h', | 50 'common/extension_api.h', |
51 'common/extension_api_stub.cc', | 51 'common/extension_api_stub.cc', |
| 52 'common/extension_message_generator.cc', |
| 53 'common/extension_message_generator.h', |
| 54 'common/extension_messages.cc', |
| 55 'common/extension_messages.h', |
52 'common/extension_paths.cc', | 56 'common/extension_paths.cc', |
53 'common/extension_paths.h', | 57 'common/extension_paths.h', |
54 'common/extension_resource.cc', | 58 'common/extension_resource.cc', |
55 'common/extension_resource.h', | 59 'common/extension_resource.h', |
56 'common/extension_set.cc', | 60 'common/extension_set.cc', |
57 'common/extension_set.h', | 61 'common/extension_set.h', |
58 'common/extension_urls.cc', | 62 'common/extension_urls.cc', |
59 'common/extension_urls.h', | 63 'common/extension_urls.h', |
60 'common/extensions_client.cc', | 64 'common/extensions_client.cc', |
61 'common/extensions_client.h', | 65 'common/extensions_client.h', |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 'common/test_util.cc', | 327 'common/test_util.cc', |
324 'common/test_util.h', | 328 'common/test_util.h', |
325 'common/value_builder.cc', | 329 'common/value_builder.cc', |
326 'common/value_builder.h', | 330 'common/value_builder.h', |
327 ], | 331 ], |
328 # Disable c4267 warnings until we fix size_t to int truncations. | 332 # Disable c4267 warnings until we fix size_t to int truncations. |
329 'msvs_disabled_warnings': [ 4267, ], | 333 'msvs_disabled_warnings': [ 4267, ], |
330 }, | 334 }, |
331 ] | 335 ] |
332 } | 336 } |
OLD | NEW |