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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 'browser/pending_extension_manager.cc', | 199 'browser/pending_extension_manager.cc', |
200 'browser/pending_extension_manager.h', | 200 'browser/pending_extension_manager.h', |
201 'browser/pref_names.cc', | 201 'browser/pref_names.cc', |
202 'browser/pref_names.h', | 202 'browser/pref_names.h', |
203 'browser/process_manager.cc', | 203 'browser/process_manager.cc', |
204 'browser/process_manager.h', | 204 'browser/process_manager.h', |
205 'browser/process_map.cc', | 205 'browser/process_map.cc', |
206 'browser/process_map.h', | 206 'browser/process_map.h', |
207 'browser/quota_service.cc', | 207 'browser/quota_service.cc', |
208 'browser/quota_service.h', | 208 'browser/quota_service.h', |
| 209 'browser/runtime_data.cc', |
| 210 'browser/runtime_data.h', |
209 'browser/update_observer.h', | 211 'browser/update_observer.h', |
210 'browser/view_type_utils.cc', | 212 'browser/view_type_utils.cc', |
211 'browser/view_type_utils.h', | 213 'browser/view_type_utils.h', |
212 ], | 214 ], |
213 # Disable c4267 warnings until we fix size_t to int truncations. | 215 # Disable c4267 warnings until we fix size_t to int truncations. |
214 'msvs_disabled_warnings': [ 4267, ], | 216 'msvs_disabled_warnings': [ 4267, ], |
215 }, | 217 }, |
216 { | 218 { |
217 'target_name': 'extensions_test_support', | 219 'target_name': 'extensions_test_support', |
218 'type': 'static_library', | 220 'type': 'static_library', |
(...skipping 13 matching lines...) Expand all Loading... |
232 'common/test_util.cc', | 234 'common/test_util.cc', |
233 'common/test_util.h', | 235 'common/test_util.h', |
234 'common/value_builder.cc', | 236 'common/value_builder.cc', |
235 'common/value_builder.h', | 237 'common/value_builder.h', |
236 ], | 238 ], |
237 # Disable c4267 warnings until we fix size_t to int truncations. | 239 # Disable c4267 warnings until we fix size_t to int truncations. |
238 'msvs_disabled_warnings': [ 4267, ], | 240 'msvs_disabled_warnings': [ 4267, ], |
239 }, | 241 }, |
240 ] | 242 ] |
241 } | 243 } |
OLD | NEW |