Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: content/content_shell.gypi

Issue 544903003: Define copy rule for content_shell.pak required for running webkit_unit_tests on android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698