| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'common/manifest.cc', | 64 'common/manifest.cc', |
| 65 'common/manifest.h', | 65 'common/manifest.h', |
| 66 'common/manifest_constants.cc', | 66 'common/manifest_constants.cc', |
| 67 'common/manifest_constants.h', | 67 'common/manifest_constants.h', |
| 68 'common/manifest_handler.cc', | 68 'common/manifest_handler.cc', |
| 69 'common/manifest_handler.h', | 69 'common/manifest_handler.h', |
| 70 'common/manifest_handlers/background_info.cc', | 70 'common/manifest_handlers/background_info.cc', |
| 71 'common/manifest_handlers/background_info.h', | 71 'common/manifest_handlers/background_info.h', |
| 72 'common/manifest_handlers/incognito_info.cc', | 72 'common/manifest_handlers/incognito_info.cc', |
| 73 'common/manifest_handlers/incognito_info.h', | 73 'common/manifest_handlers/incognito_info.h', |
| 74 'common/manifest_handlers/shared_module_info.cc', |
| 75 'common/manifest_handlers/shared_module_info.h', |
| 74 'common/matcher/regex_set_matcher.cc', | 76 'common/matcher/regex_set_matcher.cc', |
| 75 'common/matcher/regex_set_matcher.h', | 77 'common/matcher/regex_set_matcher.h', |
| 76 'common/matcher/string_pattern.cc', | 78 'common/matcher/string_pattern.cc', |
| 77 'common/matcher/string_pattern.h', | 79 'common/matcher/string_pattern.h', |
| 78 'common/matcher/substring_set_matcher.cc', | 80 'common/matcher/substring_set_matcher.cc', |
| 79 'common/matcher/substring_set_matcher.h', | 81 'common/matcher/substring_set_matcher.h', |
| 80 'common/matcher/url_matcher.cc', | 82 'common/matcher/url_matcher.cc', |
| 81 'common/matcher/url_matcher.h', | 83 'common/matcher/url_matcher.h', |
| 82 'common/matcher/url_matcher_constants.cc', | 84 'common/matcher/url_matcher_constants.cc', |
| 83 'common/matcher/url_matcher_constants.h', | 85 'common/matcher/url_matcher_constants.h', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'browser/event_listener_map.h', | 163 'browser/event_listener_map.h', |
| 162 'browser/event_router.cc', | 164 'browser/event_router.cc', |
| 163 'browser/event_router.h', | 165 'browser/event_router.h', |
| 164 'browser/extension_prefs_scope.h', | 166 'browser/extension_prefs_scope.h', |
| 165 'browser/extension_error.cc', | 167 'browser/extension_error.cc', |
| 166 'browser/extension_error.h', | 168 'browser/extension_error.h', |
| 167 'browser/extension_function.cc', | 169 'browser/extension_function.cc', |
| 168 'browser/extension_function.h', | 170 'browser/extension_function.h', |
| 169 'browser/extensions_browser_client.cc', | 171 'browser/extensions_browser_client.cc', |
| 170 'browser/extensions_browser_client.h', | 172 'browser/extensions_browser_client.h', |
| 173 'browser/external_provider_interface.h', |
| 171 'browser/info_map.cc', | 174 'browser/info_map.cc', |
| 172 'browser/info_map.h', | 175 'browser/info_map.h', |
| 173 'browser/file_highlighter.cc', | 176 'browser/file_highlighter.cc', |
| 174 'browser/file_highlighter.h', | 177 'browser/file_highlighter.h', |
| 175 'browser/file_reader.cc', | 178 'browser/file_reader.cc', |
| 176 'browser/file_reader.h', | 179 'browser/file_reader.h', |
| 177 'browser/lazy_background_task_queue.cc', | 180 'browser/lazy_background_task_queue.cc', |
| 178 'browser/lazy_background_task_queue.h', | 181 'browser/lazy_background_task_queue.h', |
| 182 'browser/management_policy.cc', |
| 183 'browser/management_policy.h', |
| 179 'browser/pref_names.cc', | 184 'browser/pref_names.cc', |
| 180 'browser/pref_names.h', | 185 'browser/pref_names.h', |
| 181 'browser/process_manager.cc', | 186 'browser/process_manager.cc', |
| 182 'browser/process_manager.h', | 187 'browser/process_manager.h', |
| 183 'browser/process_map.cc', | 188 'browser/process_map.cc', |
| 184 'browser/process_map.h', | 189 'browser/process_map.h', |
| 185 'browser/quota_service.cc', | 190 'browser/quota_service.cc', |
| 186 'browser/quota_service.h', | 191 'browser/quota_service.h', |
| 187 'browser/view_type_utils.cc', | 192 'browser/view_type_utils.cc', |
| 188 'browser/view_type_utils.h', | 193 'browser/view_type_utils.h', |
| 189 ], | 194 ], |
| 190 # Disable c4267 warnings until we fix size_t to int truncations. | 195 # Disable c4267 warnings until we fix size_t to int truncations. |
| 191 'msvs_disabled_warnings': [ 4267, ], | 196 'msvs_disabled_warnings': [ 4267, ], |
| 192 }, | 197 }, |
| 193 ] | 198 ] |
| 194 } | 199 } |
| OLD | NEW |