| 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 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
| 9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
| 10 # standard Chrome. | 10 # standard Chrome. |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resources'
, | 445 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resources'
, |
| 446 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 446 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
| 447 '<(DEPTH)/ui/strings/ui_strings.gyp:ui_strings', | 447 '<(DEPTH)/ui/strings/ui_strings.gyp:ui_strings', |
| 448 ], | 448 ], |
| 449 'conditions': [ | 449 'conditions': [ |
| 450 ['OS!="android"', { | 450 ['OS!="android"', { |
| 451 'dependencies': [ | 451 'dependencies': [ |
| 452 'browser/devtools/devtools_resources.gyp:devtools_resources', | 452 'browser/devtools/devtools_resources.gyp:devtools_resources', |
| 453 ], | 453 ], |
| 454 }], | 454 }], |
| 455 ['OS=="android"', { |
| 456 'copies': [ |
| 457 { |
| 458 'destination': '<(PRODUCT_DIR)', |
| 459 'files': [ |
| 460 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak' |
| 461 ], |
| 462 }, |
| 463 ], |
| 464 }], |
| 455 ], | 465 ], |
| 456 'actions': [ | 466 'actions': [ |
| 457 { | 467 { |
| 458 'action_name': 'repack_content_shell_pack', | 468 'action_name': 'repack_content_shell_pack', |
| 459 'variables': { | 469 'variables': { |
| 460 'pak_inputs': [ | 470 'pak_inputs': [ |
| 461 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', | 471 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources
.pak', |
| 462 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource
s_100_percent.pak', | 472 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource
s_100_percent.pak', |
| 463 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en
-US.pak', | 473 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en
-US.pak', |
| 464 '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resour
ces.pak', | 474 '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resour
ces.pak', |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1109 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1100 '--destination_dir', '<(dest_dir)', | 1110 '--destination_dir', '<(dest_dir)', |
| 1101 ], | 1111 ], |
| 1102 }, | 1112 }, |
| 1103 ], | 1113 ], |
| 1104 }, | 1114 }, |
| 1105 ], | 1115 ], |
| 1106 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1116 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1107 ] | 1117 ] |
| 1108 } | 1118 } |
| OLD | NEW |