| 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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 # after that we will start the work on buildbot to get this running there. | 667 # after that we will start the work on buildbot to get this running there. |
| 668 # When we consider this stable in the bots, we can go to unit_tests target | 668 # When we consider this stable in the bots, we can go to unit_tests target |
| 669 # and remove the duplicated entries from there, otherwise if we just | 669 # and remove the duplicated entries from there, otherwise if we just |
| 670 # remove them right now we would be losing coverage. | 670 # remove them right now we would be losing coverage. |
| 671 # http://crbug.com/348066 | 671 # http://crbug.com/348066 |
| 672 'target_name': 'extensions_unittests', | 672 'target_name': 'extensions_unittests', |
| 673 'type': 'executable', | 673 'type': 'executable', |
| 674 'dependencies': [ | 674 'dependencies': [ |
| 675 '../base/base.gyp:base', | 675 '../base/base.gyp:base', |
| 676 '../base/base.gyp:test_support_base', | 676 '../base/base.gyp:test_support_base', |
| 677 '../content/content_shell_and_tests.gyp:test_support_content', |
| 677 '../testing/gmock.gyp:gmock', | 678 '../testing/gmock.gyp:gmock', |
| 678 '../testing/gtest.gyp:gtest', | 679 '../testing/gtest.gyp:gtest', |
| 679 'extensions_common', | 680 'extensions_common', |
| 681 'extensions_renderer', |
| 682 'extensions_resources.gyp:extensions_resources', |
| 680 'extensions_strings.gyp:extensions_strings', | 683 'extensions_strings.gyp:extensions_strings', |
| 681 'extensions_test_support', | 684 'extensions_test_support', |
| 682 ], | 685 ], |
| 683 'sources': [ | 686 'sources': [ |
| 684 'common/api/sockets/sockets_manifest_permission_unittest.cc', | 687 'common/api/sockets/sockets_manifest_permission_unittest.cc', |
| 685 'common/csp_validator_unittest.cc', | 688 'common/csp_validator_unittest.cc', |
| 686 'common/event_filter_unittest.cc', | 689 'common/event_filter_unittest.cc', |
| 687 'common/id_util_unittest.cc', | 690 'common/id_util_unittest.cc', |
| 688 'common/one_shot_event_unittest.cc', | 691 'common/one_shot_event_unittest.cc', |
| 689 'common/permissions/manifest_permission_set_unittest.cc', | 692 'common/permissions/manifest_permission_set_unittest.cc', |
| 690 'common/user_script_unittest.cc', | 693 'common/user_script_unittest.cc', |
| 694 'renderer/event_unittest.cc', |
| 695 'renderer/json_schema_unittest.cc', |
| 696 'renderer/messaging_utils_unittest.cc', |
| 697 'renderer/module_system_test.cc', |
| 698 'renderer/module_system_test.h', |
| 699 'renderer/module_system_unittest.cc', |
| 700 'renderer/safe_builtins_unittest.cc', |
| 701 'renderer/utils_unittest.cc', |
| 691 'test/extensions_unittests_main.cc', | 702 'test/extensions_unittests_main.cc', |
| 692 'test/test_extensions_client.cc', | 703 'test/test_extensions_client.cc', |
| 693 'test/test_extensions_client.h', | 704 'test/test_extensions_client.h', |
| 694 'test/test_permission_message_provider.cc', | 705 'test/test_permission_message_provider.cc', |
| 695 'test/test_permission_message_provider.h', | 706 'test/test_permission_message_provider.h', |
| 696 'test/test_permissions_provider.cc', | 707 'test/test_permissions_provider.cc', |
| 697 'test/test_permissions_provider.h', | 708 'test/test_permissions_provider.h', |
| 698 ], | 709 ], |
| 710 'actions': [ |
| 711 { |
| 712 'action_name': 'repack_components_pack', |
| 713 'variables': { |
| 714 'pak_inputs': [ |
| 715 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_resources.pak', |
| 716 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_renderer_resourc
es.pak', |
| 717 ], |
| 718 'pak_output': '<(PRODUCT_DIR)/extensions_unittests_resources.pak', |
| 719 }, |
| 720 'includes': [ '../build/repack_action.gypi' ], |
| 721 }, |
| 722 ], |
| 699 }, | 723 }, |
| 700 ] | 724 ] |
| 701 } | 725 } |
| OLD | NEW |