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

Side by Side Diff: content/content_shell.gypi

Issue 10916160: Upstreaming SelectFileDialog for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Elliot's nits Created 8 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 | 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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 'action_name': 'content_shell_apk', 613 'action_name': 'content_shell_apk',
614 'inputs': [ 614 'inputs': [
615 'shell/android/java/content_shell_apk.xml', 615 'shell/android/java/content_shell_apk.xml',
616 'shell/android/java/AndroidManifest.xml', 616 'shell/android/java/AndroidManifest.xml',
617 '<!@(find shell/android/java -name "*.java")', 617 '<!@(find shell/android/java -name "*.java")',
618 '<!@(find shell/android/res -name "*")', 618 '<!@(find shell/android/res -name "*")',
619 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', 619 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',
620 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', 620 '<(PRODUCT_DIR)/lib.java/chromium_content.jar',
621 '<(PRODUCT_DIR)/lib.java/chromium_media.jar', 621 '<(PRODUCT_DIR)/lib.java/chromium_media.jar',
622 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', 622 '<(PRODUCT_DIR)/lib.java/chromium_net.jar',
623 '<(PRODUCT_DIR)/lib.java/chromium_ui.jar',
623 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', 624 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak',
624 '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent _shell_content_view.so', 625 '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent _shell_content_view.so',
625 ], 626 ],
626 'outputs': [ 627 'outputs': [
627 # Awkwardly, we build a Debug APK even when gyp is in 628 # Awkwardly, we build a Debug APK even when gyp is in
628 # Release mode. I don't think it matters (e.g. we're 629 # Release mode. I don't think it matters (e.g. we're
629 # probably happy to not codesign) but naming should be 630 # probably happy to not codesign) but naming should be
630 # fixed. 631 # fixed.
631 '<(PRODUCT_DIR)/content_shell/ContentShell-debug.apk', 632 '<(PRODUCT_DIR)/content_shell/ContentShell-debug.apk',
632 ], 633 ],
(...skipping 16 matching lines...) Expand all
649 'dependencies': [ 650 'dependencies': [
650 'content_java', 651 'content_java',
651 ], 652 ],
652 } 653 }
653 ], 654 ],
654 }, 655 },
655 ], 656 ],
656 }], # OS=="android" 657 }], # OS=="android"
657 ] 658 ]
658 } 659 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698