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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'common/extension_resource.cc', | 44 'common/extension_resource.cc', |
45 'common/extension_resource.h', | 45 'common/extension_resource.h', |
46 'common/extension_urls.cc', | 46 'common/extension_urls.cc', |
47 'common/extension_urls.h', | 47 'common/extension_urls.h', |
48 'common/extensions_client.cc', | 48 'common/extensions_client.cc', |
49 'common/extensions_client.h', | 49 'common/extensions_client.h', |
50 'common/features/feature.cc', | 50 'common/features/feature.cc', |
51 'common/features/feature.h', | 51 'common/features/feature.h', |
52 'common/features/feature_provider.cc', | 52 'common/features/feature_provider.cc', |
53 'common/features/feature_provider.h', | 53 'common/features/feature_provider.h', |
| 54 'common/file_util.cc', |
| 55 'common/file_util.h', |
54 'common/id_util.cc', | 56 'common/id_util.cc', |
55 'common/id_util.h', | 57 'common/id_util.h', |
56 'common/install_warning.cc', | 58 'common/install_warning.cc', |
57 'common/install_warning.h', | 59 'common/install_warning.h', |
58 'common/manifest.cc', | 60 'common/manifest.cc', |
59 'common/manifest.h', | 61 'common/manifest.h', |
60 'common/manifest_constants.cc', | 62 'common/manifest_constants.cc', |
61 'common/manifest_constants.h', | 63 'common/manifest_constants.h', |
62 'common/manifest_handler.cc', | 64 'common/manifest_handler.cc', |
63 'common/manifest_handler.h', | 65 'common/manifest_handler.h', |
| 66 'common/manifest_handlers/background_info.cc', |
| 67 'common/manifest_handlers/background_info.h', |
64 'common/manifest_handlers/incognito_info.cc', | 68 'common/manifest_handlers/incognito_info.cc', |
65 'common/manifest_handlers/incognito_info.h', | 69 'common/manifest_handlers/incognito_info.h', |
66 'common/matcher/regex_set_matcher.cc', | 70 'common/matcher/regex_set_matcher.cc', |
67 'common/matcher/regex_set_matcher.h', | 71 'common/matcher/regex_set_matcher.h', |
68 'common/matcher/string_pattern.cc', | 72 'common/matcher/string_pattern.cc', |
69 'common/matcher/string_pattern.h', | 73 'common/matcher/string_pattern.h', |
70 'common/matcher/substring_set_matcher.cc', | 74 'common/matcher/substring_set_matcher.cc', |
71 'common/matcher/substring_set_matcher.h', | 75 'common/matcher/substring_set_matcher.h', |
72 'common/matcher/url_matcher.cc', | 76 'common/matcher/url_matcher.cc', |
73 'common/matcher/url_matcher.h', | 77 'common/matcher/url_matcher.h', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 'browser/pref_names.cc', | 150 'browser/pref_names.cc', |
147 'browser/pref_names.h', | 151 'browser/pref_names.h', |
148 'browser/view_type_utils.cc', | 152 'browser/view_type_utils.cc', |
149 'browser/view_type_utils.h', | 153 'browser/view_type_utils.h', |
150 ], | 154 ], |
151 # Disable c4267 warnings until we fix size_t to int truncations. | 155 # Disable c4267 warnings until we fix size_t to int truncations. |
152 'msvs_disabled_warnings': [ 4267, ], | 156 'msvs_disabled_warnings': [ 4267, ], |
153 }, | 157 }, |
154 ] | 158 ] |
155 } | 159 } |
OLD | NEW |