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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 'browser/api/api_resource.h', | 245 'browser/api/api_resource.h', |
246 'browser/api/api_resource_manager.h', | 246 'browser/api/api_resource_manager.h', |
247 'browser/api/async_api_function.cc', | 247 'browser/api/async_api_function.cc', |
248 'browser/api/async_api_function.h', | 248 'browser/api/async_api_function.h', |
249 'browser/api/dns/dns_api.cc', | 249 'browser/api/dns/dns_api.cc', |
250 'browser/api/dns/dns_api.h', | 250 'browser/api/dns/dns_api.h', |
251 'browser/api/dns/host_resolver_wrapper.cc', | 251 'browser/api/dns/host_resolver_wrapper.cc', |
252 'browser/api/dns/host_resolver_wrapper.h', | 252 'browser/api/dns/host_resolver_wrapper.h', |
253 'browser/api/extensions_api_client.cc', | 253 'browser/api/extensions_api_client.cc', |
254 'browser/api/extensions_api_client.h', | 254 'browser/api/extensions_api_client.h', |
| 255 'browser/api/runtime/runtime_api.cc', |
| 256 'browser/api/runtime/runtime_api.h', |
| 257 'browser/api/runtime/runtime_api_delegate.cc', |
| 258 'browser/api/runtime/runtime_api_delegate.h', |
255 'browser/api/socket/socket.cc', | 259 'browser/api/socket/socket.cc', |
256 'browser/api/socket/socket.h', | 260 'browser/api/socket/socket.h', |
257 'browser/api/socket/socket_api.cc', | 261 'browser/api/socket/socket_api.cc', |
258 'browser/api/socket/socket_api.h', | 262 'browser/api/socket/socket_api.h', |
259 'browser/api/socket/tcp_socket.cc', | 263 'browser/api/socket/tcp_socket.cc', |
260 'browser/api/socket/tcp_socket.h', | 264 'browser/api/socket/tcp_socket.h', |
261 'browser/api/socket/udp_socket.cc', | 265 'browser/api/socket/udp_socket.cc', |
262 'browser/api/socket/udp_socket.h', | 266 'browser/api/socket/udp_socket.h', |
263 'browser/api/sockets_tcp/sockets_tcp_api.cc', | 267 'browser/api/sockets_tcp/sockets_tcp_api.cc', |
264 'browser/api/sockets_tcp/sockets_tcp_api.h', | 268 'browser/api/sockets_tcp/sockets_tcp_api.h', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 ], | 397 ], |
394 'conditions': [ | 398 'conditions': [ |
395 ['enable_extensions==0', { | 399 ['enable_extensions==0', { |
396 # Exclude all API implementations and the ExtensionsApiClient | 400 # Exclude all API implementations and the ExtensionsApiClient |
397 # interface. Moving an API from src/chrome to src/extensions implies | 401 # interface. Moving an API from src/chrome to src/extensions implies |
398 # it can be cleanly disabled with enable_extensions==0. | 402 # it can be cleanly disabled with enable_extensions==0. |
399 # TODO: Eventually the entire extensions module should not be built | 403 # TODO: Eventually the entire extensions module should not be built |
400 # when enable_extensions==0. | 404 # when enable_extensions==0. |
401 'sources/': [ | 405 'sources/': [ |
402 ['exclude', '^browser/api/'], | 406 ['exclude', '^browser/api/'], |
| 407 ['include', '^browser/api/runtime/runtime_api.cc'], |
403 ], | 408 ], |
404 'sources!': [ | 409 'sources!': [ |
405 'browser/browser_context_keyed_service_factories.cc', | 410 'browser/browser_context_keyed_service_factories.cc', |
406 'browser/browser_context_keyed_service_factories.h', | 411 'browser/browser_context_keyed_service_factories.h', |
407 ], | 412 ], |
408 }], | 413 }], |
409 ], | 414 ], |
410 # Disable c4267 warnings until we fix size_t to int truncations. | 415 # Disable c4267 warnings until we fix size_t to int truncations. |
411 'msvs_disabled_warnings': [ 4267, ], | 416 'msvs_disabled_warnings': [ 4267, ], |
412 }, | 417 }, |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 'target_name': 'extensions_test_support', | 542 'target_name': 'extensions_test_support', |
538 'type': 'static_library', | 543 'type': 'static_library', |
539 'dependencies': [ | 544 'dependencies': [ |
540 '../base/base.gyp:base', | 545 '../base/base.gyp:base', |
541 '../testing/gtest.gyp:gtest', | 546 '../testing/gtest.gyp:gtest', |
542 'extensions_browser', | 547 'extensions_browser', |
543 'extensions_common', | 548 'extensions_common', |
544 ], | 549 ], |
545 'include_dirs': [ | 550 'include_dirs': [ |
546 '..', | 551 '..', |
| 552 '<(SHARED_INTERMEDIATE_DIR)', |
547 ], | 553 ], |
548 'sources': [ | 554 'sources': [ |
549 'browser/test_extensions_browser_client.cc', | 555 'browser/test_extensions_browser_client.cc', |
550 'browser/test_extensions_browser_client.h', | 556 'browser/test_extensions_browser_client.h', |
551 'browser/test_management_policy.cc', | 557 'browser/test_management_policy.cc', |
552 'browser/test_management_policy.h', | 558 'browser/test_management_policy.h', |
| 559 'browser/test_runtime_api_delegate.cc', |
| 560 'browser/test_runtime_api_delegate.h', |
553 'common/extension_builder.cc', | 561 'common/extension_builder.cc', |
554 'common/extension_builder.h', | 562 'common/extension_builder.h', |
555 'common/test_util.cc', | 563 'common/test_util.cc', |
556 'common/test_util.h', | 564 'common/test_util.h', |
557 'common/value_builder.cc', | 565 'common/value_builder.cc', |
558 'common/value_builder.h', | 566 'common/value_builder.h', |
559 'renderer/test_extensions_renderer_client.cc', | 567 'renderer/test_extensions_renderer_client.cc', |
560 'renderer/test_extensions_renderer_client.h', | 568 'renderer/test_extensions_renderer_client.h', |
561 ], | 569 ], |
562 # Disable c4267 warnings until we fix size_t to int truncations. | 570 # Disable c4267 warnings until we fix size_t to int truncations. |
(...skipping 30 matching lines...) Expand all Loading... |
593 'test/test_extensions_client.cc', | 601 'test/test_extensions_client.cc', |
594 'test/test_extensions_client.h', | 602 'test/test_extensions_client.h', |
595 'test/test_permission_message_provider.cc', | 603 'test/test_permission_message_provider.cc', |
596 'test/test_permission_message_provider.h', | 604 'test/test_permission_message_provider.h', |
597 'test/test_permissions_provider.cc', | 605 'test/test_permissions_provider.cc', |
598 'test/test_permissions_provider.h', | 606 'test/test_permissions_provider.h', |
599 ], | 607 ], |
600 }, | 608 }, |
601 ] | 609 ] |
602 } | 610 } |
OLD | NEW |