| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 { | 204 { |
| 205 # We build a minimal set of resources so WebKit in content_shell has | 205 # We build a minimal set of resources so WebKit in content_shell has |
| 206 # access to necessary resources. | 206 # access to necessary resources. |
| 207 'target_name': 'content_shell_pak', | 207 'target_name': 'content_shell_pak', |
| 208 'type': 'none', | 208 'type': 'none', |
| 209 'dependencies': [ | 209 'dependencies': [ |
| 210 'browser/debugger/devtools_resources.gyp:devtools_resources', | 210 'browser/debugger/devtools_resources.gyp:devtools_resources', |
| 211 'content_shell_resources', | 211 'content_shell_resources', |
| 212 '<(DEPTH)/net/net.gyp:net_resources', | 212 '<(DEPTH)/net/net.gyp:net_resources', |
| 213 '<(DEPTH)/ui/ui.gyp:ui_resources', | 213 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 214 '<(DEPTH)/ui/ui.gyp:ui_resources_standard', | |
| 215 ], | 214 ], |
| 216 'variables': { | 215 'variables': { |
| 217 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', | 216 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', |
| 218 }, | 217 }, |
| 219 'actions': [ | 218 'actions': [ |
| 220 { | 219 { |
| 221 'action_name': 'repack_content_shell_pack', | 220 'action_name': 'repack_content_shell_pack', |
| 222 'variables': { | 221 'variables': { |
| 223 'pak_inputs': [ | 222 'pak_inputs': [ |
| 224 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', | 223 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', |
| 225 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak', | 224 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak', |
| 226 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 225 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
| 227 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.pak', | 226 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_standard.
pak', |
| 228 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_
standard.pak', | |
| 229 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', | 227 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', |
| 230 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak', | 228 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak', |
| 231 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', | 229 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', |
| 232 ], | 230 ], |
| 233 }, | 231 }, |
| 234 'inputs': [ | 232 'inputs': [ |
| 235 '<(repack_path)', | 233 '<(repack_path)', |
| 236 '<@(pak_inputs)', | 234 '<@(pak_inputs)', |
| 237 ], | 235 ], |
| 238 'action': ['python', '<(repack_path)', '<@(_outputs)', | 236 'action': ['python', '<(repack_path)', '<@(_outputs)', |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 '-buildfile', | 606 '-buildfile', |
| 609 '<(DEPTH)/content/shell/android/java/content_shell_apk.xml', | 607 '<(DEPTH)/content/shell/android/java/content_shell_apk.xml', |
| 610 ] | 608 ] |
| 611 } | 609 } |
| 612 ], | 610 ], |
| 613 }, | 611 }, |
| 614 ], | 612 ], |
| 615 }], # OS=="android" | 613 }], # OS=="android" |
| 616 ] | 614 ] |
| 617 } | 615 } |
| OLD | NEW |