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

Side by Side Diff: content/content_shell.gypi

Issue 10377059: Android content shell bringup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 'shell/android/shell_view.cc', 516 'shell/android/shell_view.cc',
517 'shell/android/shell_view.h', 517 'shell/android/shell_view.h',
518 ], 518 ],
519 }, 519 },
520 { 520 {
521 'target_name': 'content_shell_apk', 521 'target_name': 'content_shell_apk',
522 'type': 'none', 522 'type': 'none',
523 'actions': [ 523 'actions': [
524 { 524 {
525 'action_name': 'copy_base_jar', 525 'action_name': 'copy_base_jar',
526 'inputs': ['<(PRODUCT_DIR)/chromium_base.jar'], 526 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar'],
527 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_base. jar'], 527 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_base. jar'],
528 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], 528 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
529 }, 529 },
530 { 530 {
531 'action_name': 'copy_net_jar',
532 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_net.jar'],
533 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_net.j ar'],
534 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
535 },
536 {
537 'action_name': 'copy_media_jar',
538 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_media.jar'],
539 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_media .jar'],
Ted C 2012/05/09 00:26:41 add as input to content_shell_apk...same with the
540 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
541 },
542 {
531 'action_name': 'copy_content_jar', 543 'action_name': 'copy_content_jar',
532 'inputs': ['<(PRODUCT_DIR)/chromium_content.jar'], 544 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content.jar'],
533 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_conte nt.jar'], 545 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_conte nt.jar'],
534 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], 546 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
535 }, 547 },
536 { 548 {
537 'action_name': 'copy_and_strip_so', 549 'action_name': 'copy_and_strip_so',
538 'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'], 550 'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'],
539 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/armeabi/libcontent_ shell_content_view.so'], 551 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/armeabi/libcontent_ shell_content_view.so'],
540 'action': [ 552 'action': [
541 '<!(/bin/echo -n $STRIP)', 553 '<!(/bin/echo -n $STRIP)',
542 '--strip-unneeded', # All symbols not needed for relocation. 554 '--strip-unneeded', # All symbols not needed for relocation.
(...skipping 26 matching lines...) Expand all
569 '-buildfile', 581 '-buildfile',
570 '<(DEPTH)/content/shell/android/content_shell_apk.xml', 582 '<(DEPTH)/content/shell/android/content_shell_apk.xml',
571 ] 583 ]
572 } 584 }
573 ], 585 ],
574 }, 586 },
575 ], 587 ],
576 }], # OS=="android" 588 }], # OS=="android"
577 ] 589 ]
578 } 590 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698