Chromium Code Reviews| Index: extensions/extensions.gyp |
| diff --git a/extensions/extensions.gyp b/extensions/extensions.gyp |
| index 9bc93ae019efbdfae4a34e1fb7c58059052aa6a2..8a7130b03aff5e063913291ffbae7cac133ad74f 100644 |
| --- a/extensions/extensions.gyp |
| +++ b/extensions/extensions.gyp |
| @@ -8,6 +8,26 @@ |
| }, |
| 'targets': [ |
| { |
| + 'target_name': 'extensions_pak', |
| + 'type': 'none', |
| + 'dependencies': [ |
| + 'extensions_resources.gyp:extensions_resources', |
| + ], |
| + 'actions': [ |
| + { |
| + 'action_name': 'repack_extensions_pak', |
| + 'variables': { |
| + 'pak_inputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_resources.pak', |
| + '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_renderer_resources.pak', |
|
James Cook
2014/07/24 23:25:11
You'll need to rebase on top of my patch to get th
tfarina
2014/07/24 23:45:58
Sure, I will wait it to land.
|
| + ], |
| + 'pak_output': '<(PRODUCT_DIR)/extensions.pak', |
| + }, |
| + 'includes': [ '../build/repack_action.gypi' ], |
| + }, |
| + ], |
| + }, |
| + { |
| # GN version: //extensions/common |
| 'target_name': 'extensions_common', |
| 'type': 'static_library', |
| @@ -704,6 +724,7 @@ |
| '../testing/gmock.gyp:gmock', |
| '../testing/gtest.gyp:gtest', |
| 'extensions_common', |
| + 'extensions_pak', |
| 'extensions_renderer', |
| 'extensions_resources.gyp:extensions_resources', |
| 'extensions_strings.gyp:extensions_strings', |
| @@ -741,19 +762,6 @@ |
| ], |
| }], |
| ], |
| - 'actions': [ |
| - { |
| - 'action_name': 'repack_extensions_unittests_pak', |
| - 'variables': { |
| - 'pak_inputs': [ |
| - '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_resources.pak', |
| - '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_renderer_resources.pak', |
| - ], |
| - 'pak_output': '<(PRODUCT_DIR)/extensions_unittests_resources.pak', |
| - }, |
| - 'includes': [ '../build/repack_action.gypi' ], |
| - }, |
| - ], |
| }, |
| ] |
| } |