| 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 524 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
| 525 ], | 525 ], |
| 526 'sources': [ | 526 'sources': [ |
| 527 'shell/android/shell_library_loader.cc', | 527 'shell/android/shell_library_loader.cc', |
| 528 'shell/android/shell_library_loader.h', | 528 'shell/android/shell_library_loader.h', |
| 529 'shell/android/shell_manager.cc', | 529 'shell/android/shell_manager.cc', |
| 530 'shell/android/shell_manager.h', | 530 'shell/android/shell_manager.h', |
| 531 'shell/android/shell_view.cc', | 531 'shell/android/shell_view.cc', |
| 532 'shell/android/shell_view.h', | 532 'shell/android/shell_view.h', |
| 533 ], | 533 ], |
| 534 'sources!': [ |
| 535 'shell/shell_main.cc', |
| 536 'shell/shell_main.h', |
| 537 ], |
| 534 'conditions': [ | 538 'conditions': [ |
| 535 ['android_build_type==1', { | 539 ['android_build_type==1', { |
| 536 'ldflags': [ | 540 'ldflags': [ |
| 537 '-lgabi++', # For rtti | 541 '-lgabi++', # For rtti |
| 538 ], | 542 ], |
| 539 }], | 543 }], |
| 540 ], | 544 ], |
| 541 }, | 545 }, |
| 542 { | 546 { |
| 543 'target_name': 'content_shell_apk', | 547 'target_name': 'content_shell_apk', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 'action_name': 'content_shell_apk', | 587 'action_name': 'content_shell_apk', |
| 584 'inputs': [ | 588 'inputs': [ |
| 585 '<(DEPTH)/content/shell/android/java/content_shell_apk.xml', | 589 '<(DEPTH)/content/shell/android/java/content_shell_apk.xml', |
| 586 '<(DEPTH)/content/shell/android/AndroidManifest.xml', | 590 '<(DEPTH)/content/shell/android/AndroidManifest.xml', |
| 587 '<!@(find shell/android/java -name "*.java")', | 591 '<!@(find shell/android/java -name "*.java")', |
| 588 '<!@(find shell/android/res -name "*")', | 592 '<!@(find shell/android/res -name "*")', |
| 589 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_base.jar', | 593 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_base.jar', |
| 590 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_net.jar', | 594 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_net.jar', |
| 591 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_media.jar', | 595 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_media.jar', |
| 592 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_content.jar', | 596 '<(PRODUCT_DIR)/content_shell/java/libs/chromium_content.jar', |
| 597 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', |
| 593 '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent
_shell_content_view.so', | 598 '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent
_shell_content_view.so', |
| 594 ], | 599 ], |
| 595 'outputs': [ | 600 'outputs': [ |
| 596 # Awkwardly, we build a Debug APK even when gyp is in | 601 # Awkwardly, we build a Debug APK even when gyp is in |
| 597 # Release mode. I don't think it matters (e.g. we're | 602 # Release mode. I don't think it matters (e.g. we're |
| 598 # probably happy to not codesign) but naming should be | 603 # probably happy to not codesign) but naming should be |
| 599 # fixed. | 604 # fixed. |
| 600 '<(PRODUCT_DIR)/content_shell/ContentShell-debug.apk', | 605 '<(PRODUCT_DIR)/content_shell/ContentShell-debug.apk', |
| 601 ], | 606 ], |
| 602 'action': [ | 607 'action': [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 632 '-buildfile', | 637 '-buildfile', |
| 633 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', | 638 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', |
| 634 ] | 639 ] |
| 635 } | 640 } |
| 636 ], | 641 ], |
| 637 }, | 642 }, |
| 638 ], | 643 ], |
| 639 }], # OS=="android" | 644 }], # OS=="android" |
| 640 ] | 645 ] |
| 641 } | 646 } |
| OLD | NEW |