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

Side by Side Diff: build/java_apk.gypi

Issue 390183009: Fixing packaging of additional libs on android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # This file is meant to be included into a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to build Android APKs in a consistent manner. 6 # to build Android APKs in a consistent manner.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # { 9 # {
10 # 'target_name': 'my_package_apk', 10 # 'target_name': 'my_package_apk',
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 ], 383 ],
384 'ordered_libraries_file': '<(additional_ordered_libraries_file)', 384 'ordered_libraries_file': '<(additional_ordered_libraries_file)',
385 'subtarget': '_additional_libraries', 385 'subtarget': '_additional_libraries',
386 }, 386 },
387 'includes': ['../build/android/write_ordered_libraries.gypi'], 387 'includes': ['../build/android/write_ordered_libraries.gypi'],
388 }, 388 },
389 { 389 {
390 'action_name': 'strip_additional_libraries', 390 'action_name': 'strip_additional_libraries',
391 'variables': { 391 'variables': {
392 'ordered_libraries_file': '<(additional_ordered_libraries_file)', 392 'ordered_libraries_file': '<(additional_ordered_libraries_file)',
393 'stripped_libraries_dir%': '<(stripped_libraries_dir)', 393 'stripped_libraries_dir': '<(libraries_source_dir)',
394 'input_paths': [ 394 'input_paths': [
395 '<@(additional_bundled_libs)', 395 '<@(additional_bundled_libs)',
396 '<(strip_stamp)', 396 '<(strip_stamp)',
397 ], 397 ],
398 'stamp': '<(strip_additional_stamp)' 398 'stamp': '<(strip_additional_stamp)'
399 }, 399 },
400 'includes': ['../build/android/strip_native_libraries.gypi'], 400 'includes': ['../build/android/strip_native_libraries.gypi'],
401 }, 401 },
402 ], 402 ],
403 'conditions': [ 403 'conditions': [
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 '-DEMMA_INSTRUMENT=<(emma_instrument)', 877 '-DEMMA_INSTRUMENT=<(emma_instrument)',
878 '-DEMMA_DEVICE_JAR=<(emma_device_jar)', 878 '-DEMMA_DEVICE_JAR=<(emma_device_jar)',
879 879
880 '-Dbasedir=.', 880 '-Dbasedir=.',
881 '-buildfile', 881 '-buildfile',
882 '<(DEPTH)/build/android/ant/apk-package.xml', 882 '<(DEPTH)/build/android/ant/apk-package.xml',
883 ] 883 ]
884 }, 884 },
885 ], 885 ],
886 } 886 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698