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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
560 '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent _shell_content_view.so', | 560 '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent _shell_content_view.so', |
561 ], | 561 ], |
562 'outputs': [ | 562 'outputs': [ |
563 # Awkwardly, we build a Debug APK even when gyp is in | 563 # Awkwardly, we build a Debug APK even when gyp is in |
564 # Release mode. I don't think it matters (e.g. we're | 564 # Release mode. I don't think it matters (e.g. we're |
565 # probably happy to not codesign) but naming should be | 565 # probably happy to not codesign) but naming should be |
566 # fixed. | 566 # fixed. |
567 '<(PRODUCT_DIR)/ContentShell-debug.apk', | 567 '<(PRODUCT_DIR)/ContentShell-debug.apk', |
568 ], | 568 ], |
569 'action': [ | 569 'action': [ |
570 # Pass the build type to ant. Currently it only assumes | |
571 # debug mode in java. Release mode will break the current | |
572 # workflow. | |
573 # TODO(yongsheng): enable it once the workflow is ready | |
574 # to support release mode. | |
575 # '<(DEPTH)/build/android/content_shell_ant_helper.sh', | |
570 'ant', | 576 'ant', |
571 '-DPRODUCT_DIR=<(ant_build_out)', | 577 '-DPRODUCT_DIR=<(ant_build_out)', |
572 '-DAPP_ABI=<(android_app_abi)', | 578 '-DAPP_ABI=<(android_app_abi)', |
573 '-buildfile', | 579 '-buildfile', |
574 '<(DEPTH)/content/shell/android/content_shell_apk.xml', | 580 '<(DEPTH)/content/shell/android/content_shell_apk.xml', |
581 # '<(CONFIGURATION_NAME)', | |
jochen (gone - plz use gerrit)
2012/07/10 09:14:24
What about disabling this (i.e. replacing the last
yongsheng
2012/07/10 11:25:45
It's also ok for me. I'll change it. Thanks.
| |
575 ] | 582 ] |
576 } | 583 } |
577 ], | 584 ], |
578 }, | 585 }, |
579 ], | 586 ], |
580 }], # OS=="android" | 587 }], # OS=="android" |
581 ] | 588 ] |
582 } | 589 } |
OLD | NEW |