| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { |
| 11 'target_name': 'athena_resources', |
| 12 'type': 'none', |
| 13 'variables': { |
| 14 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/athena/resources', |
| 15 }, |
| 16 'actions': [ |
| 17 { |
| 18 'action_name': 'athena_resources', |
| 19 'variables': { |
| 20 'grit_grd_file': 'athena_resources.grd', |
| 21 }, |
| 22 'includes': [ '../../build/grit_action.gypi' ], |
| 23 }, |
| 24 ], |
| 25 'includes': [ '../../build/grit_target.gypi' ], |
| 26 }, |
| 27 { |
| 11 'target_name': 'athena_pak', | 28 'target_name': 'athena_pak', |
| 12 'type': 'none', | 29 'type': 'none', |
| 13 'dependencies': [ | 30 'dependencies': [ |
| 14 '../../ash/ash_resources.gyp:ash_resources', | 31 '../../ash/ash_resources.gyp:ash_resources', |
| 15 '../../extensions/extensions.gyp:extensions_shell_and_test_pak', | 32 '../../extensions/extensions.gyp:extensions_shell_and_test_pak', |
| 16 '../../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', | 33 '../../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', |
| 17 '../../ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', | 34 '../../ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', |
| 18 '../../webkit/webkit_resources.gyp:webkit_resources', | 35 '../../webkit/webkit_resources.gyp:webkit_resources', |
| 19 '../../webkit/webkit_resources.gyp:webkit_strings', | 36 '../../webkit/webkit_resources.gyp:webkit_strings', |
| 37 'athena_resources', |
| 20 ], | 38 ], |
| 21 'actions': [{ | 39 'actions': [{ |
| 22 'action_name': 'repack_athena_pack', | 40 'action_name': 'repack_athena_pack', |
| 23 'variables': { | 41 'variables': { |
| 24 'pak_inputs': [ | 42 'pak_inputs': [ |
| 25 '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 43 '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
| 26 '<(SHARED_INTERMEDIATE_DIR)/ash/resources/ash_resources_100_percent.
pak', | 44 '<(SHARED_INTERMEDIATE_DIR)/ash/resources/ash_resources_100_percent.
pak', |
| 45 '<(SHARED_INTERMEDIATE_DIR)/athena/resources/athena_resources_100_pe
rcent.pak', |
| 27 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources/ui_chromeos_resour
ces_100_percent.pak', | 46 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources/ui_chromeos_resour
ces_100_percent.pak', |
| 28 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/strings/ui_chromeos_strings_
en-US.pak', | 47 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/strings/ui_chromeos_strings_
en-US.pak', |
| 29 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pak'
, | 48 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pak'
, |
| 30 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak', | 49 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak', |
| 31 ], | 50 ], |
| 32 'pak_output': '<(PRODUCT_DIR)/athena_resources.pak', | 51 'pak_output': '<(PRODUCT_DIR)/athena_resources.pak', |
| 33 }, | 52 }, |
| 34 'includes': [ '../../build/repack_action.gypi' ], | 53 'includes': [ '../../build/repack_action.gypi' ], |
| 35 }], | 54 }], |
| 36 }, | 55 }, |
| 37 ] | 56 ] |
| 38 } | 57 } |
| OLD | NEW |