Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
| 10 '../../../build/common.gypi', | 10 '../../../build/common.gypi', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 163 'actions': [ | 163 'actions': [ |
| 164 { | 164 { |
| 165 'action_name': 'test_shell_repack', | 165 'action_name': 'test_shell_repack', |
| 166 'inputs': [ | 166 'inputs': [ |
| 167 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 167 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
| 168 '<(SHARED_INTERMEDIATE_DIR)/test_shell/test_shell_resources.pak' , | 168 '<(SHARED_INTERMEDIATE_DIR)/test_shell/test_shell_resources.pak' , |
| 169 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', | 169 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', |
| 170 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak', | 170 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak', |
| 171 ], | 171 ], |
| 172 'outputs': [ | 172 'outputs': [ |
| 173 '<(PRODUCT_DIR)/test_shell.pak', | 173 '<(INTERMEDIATE_DIR)/repack/test_shell.pak', |
|
Mark Mentovai
2009/04/02 05:07:19
I thought this was fine as-is, but it seems that y
| |
| 174 ], | 174 ], |
| 175 'action': ['python', '../../../tools/data_pack/repack.py', '<@(_ou tputs)', '<@(_inputs)'], | 175 'action': ['python', '../../../tools/data_pack/repack.py', '<@(_ou tputs)', '<@(_inputs)'], |
| 176 }, | 176 }, |
| 177 ], | 177 ], |
| 178 'scons_depends': [ | 178 'copies': [ |
| 179 ['<(PRODUCT_DIR)/test_shell'], | 179 { |
| 180 ['<(PRODUCT_DIR)/test_shell.pak'], | 180 'destination': '<(PRODUCT_DIR)', |
| 181 'files': ['<(INTERMEDIATE_DIR)/repack/test_shell.pak'], | |
| 182 }, | |
| 181 ], | 183 ], |
| 182 }], | 184 }], |
| 183 ['OS=="mac"', { | 185 ['OS=="mac"', { |
| 184 'product_name': 'TestShell', | 186 'product_name': 'TestShell', |
| 185 'variables': { | 187 'variables': { |
| 186 'repack_path': '../../../tools/data_pack/repack.py', | 188 'repack_path': '../../../tools/data_pack/repack.py', |
| 187 }, | 189 }, |
| 188 'actions': [ | 190 'actions': [ |
| 189 { | 191 { |
| 190 # TODO(mark): Make this work with more languages than the | 192 # TODO(mark): Make this work with more languages than the |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 381 ], | 383 ], |
| 382 'dependencies': [ | 384 'dependencies': [ |
| 383 '../../../third_party/npapi/npapi.gyp:npapi', | 385 '../../../third_party/npapi/npapi.gyp:npapi', |
| 384 '../../webkit.gyp:wtf', | 386 '../../webkit.gyp:wtf', |
| 385 ], | 387 ], |
| 386 }, | 388 }, |
| 387 ], | 389 ], |
| 388 }], | 390 }], |
| 389 ], | 391 ], |
| 390 } | 392 } |
| OLD | NEW |