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

Side by Side Diff: content/shell/android/content_shell.gypi

Issue 9860032: Add skeleton of content shell for android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added content_shell_apk to the 'All' target for android Created 8 years, 8 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
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
jam 2012/03/28 16:23:48 we should avoid two gypi files with the same name
Satish 2012/03/28 20:24:49 Done.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'conditions': [
7 ['OS=="android"', {
8 'targets': [
9 {
10 'target_name': 'content_shell_apk',
11 'message': 'building content shell package',
12 'type': 'none',
13 'actions': [
14 {
15 'action_name': 'content_shell_apk',
16 'inputs': [
17 '<(DEPTH)/content/shell/android/content_shell_apk.xml',
18 '<!@(find shell/android/java -name "*.java")',
19 ],
20 'outputs': [
21 # Awkwardly, we build a Debug APK even when gyp is in
22 # Release mode. I don't think it matters (e.g. we're
23 # probably happy to not codesign) but naming should be
24 # fixed.
25 '<(PRODUCT_DIR)/ContentShell-debug.apk',
26 ],
27 'action': [
28 'ant',
29 '-DPRODUCT_DIR=<(PRODUCT_DIR)',
30 '-buildfile',
31 '<(DEPTH)/content/shell/android/content_shell_apk.xml',
32 ]
33 }
34 ],
35 },
36 ],
37 }]
38 ]
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698