| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 'browser/api/storage/storage_frontend.cc', | 217 'browser/api/storage/storage_frontend.cc', |
| 218 'browser/api/storage/storage_frontend.h', | 218 'browser/api/storage/storage_frontend.h', |
| 219 'browser/api/storage/value_store_cache.cc', | 219 'browser/api/storage/value_store_cache.cc', |
| 220 'browser/api/storage/value_store_cache.h', | 220 'browser/api/storage/value_store_cache.h', |
| 221 'browser/api/storage/weak_unlimited_settings_storage.cc', | 221 'browser/api/storage/weak_unlimited_settings_storage.cc', |
| 222 'browser/api/storage/weak_unlimited_settings_storage.h', | 222 'browser/api/storage/weak_unlimited_settings_storage.h', |
| 223 'browser/api_activity_monitor.h', | 223 'browser/api_activity_monitor.h', |
| 224 'browser/app_sorting.h', | 224 'browser/app_sorting.h', |
| 225 'browser/blacklist_state.h', | 225 'browser/blacklist_state.h', |
| 226 'browser/browser_context_keyed_api_factory.h', | 226 'browser/browser_context_keyed_api_factory.h', |
| 227 'browser/browser_context_keyed_service_factories.cc', |
| 228 'browser/browser_context_keyed_service_factories.h', |
| 227 'browser/error_map.cc', | 229 'browser/error_map.cc', |
| 228 'browser/error_map.h', | 230 'browser/error_map.h', |
| 229 'browser/event_listener_map.cc', | 231 'browser/event_listener_map.cc', |
| 230 'browser/event_listener_map.h', | 232 'browser/event_listener_map.h', |
| 231 'browser/event_router.cc', | 233 'browser/event_router.cc', |
| 232 'browser/event_router.h', | 234 'browser/event_router.h', |
| 233 'browser/extension_error.cc', | 235 'browser/extension_error.cc', |
| 234 'browser/extension_error.h', | 236 'browser/extension_error.h', |
| 235 'browser/extension_function.cc', | 237 'browser/extension_function.cc', |
| 236 'browser/extension_function.h', | 238 'browser/extension_function.h', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 'conditions': [ | 311 'conditions': [ |
| 310 ['enable_extensions==0', { | 312 ['enable_extensions==0', { |
| 311 # Exclude all API implementations and the ExtensionsApiClient | 313 # Exclude all API implementations and the ExtensionsApiClient |
| 312 # interface. Moving an API from src/chrome to src/extensions implies | 314 # interface. Moving an API from src/chrome to src/extensions implies |
| 313 # it can be cleanly disabled with enable_extensions==0. | 315 # it can be cleanly disabled with enable_extensions==0. |
| 314 # TODO: Eventually the entire extensions module should not be built | 316 # TODO: Eventually the entire extensions module should not be built |
| 315 # when enable_extensions==0. | 317 # when enable_extensions==0. |
| 316 'sources/': [ | 318 'sources/': [ |
| 317 ['exclude', '^browser/api/'], | 319 ['exclude', '^browser/api/'], |
| 318 ], | 320 ], |
| 321 'sources!': [ |
| 322 'browser/browser_context_keyed_service_factories.cc', |
| 323 'browser/browser_context_keyed_service_factories.h', |
| 324 ], |
| 319 }], | 325 }], |
| 320 ], | 326 ], |
| 321 # Disable c4267 warnings until we fix size_t to int truncations. | 327 # Disable c4267 warnings until we fix size_t to int truncations. |
| 322 'msvs_disabled_warnings': [ 4267, ], | 328 'msvs_disabled_warnings': [ 4267, ], |
| 323 }, | 329 }, |
| 324 { | 330 { |
| 325 'target_name': 'extensions_test_support', | 331 'target_name': 'extensions_test_support', |
| 326 'type': 'static_library', | 332 'type': 'static_library', |
| 327 'dependencies': [ | 333 'dependencies': [ |
| 328 'extensions_browser', | 334 'extensions_browser', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 343 'common/test_util.cc', | 349 'common/test_util.cc', |
| 344 'common/test_util.h', | 350 'common/test_util.h', |
| 345 'common/value_builder.cc', | 351 'common/value_builder.cc', |
| 346 'common/value_builder.h', | 352 'common/value_builder.h', |
| 347 ], | 353 ], |
| 348 # Disable c4267 warnings until we fix size_t to int truncations. | 354 # Disable c4267 warnings until we fix size_t to int truncations. |
| 349 'msvs_disabled_warnings': [ 4267, ], | 355 'msvs_disabled_warnings': [ 4267, ], |
| 350 }, | 356 }, |
| 351 ] | 357 ] |
| 352 } | 358 } |
| OLD | NEW |