| Index: build/android/write_ordered_libraries.gypi
|
| diff --git a/build/android/write_ordered_libraries.gypi b/build/android/write_ordered_libraries.gypi
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2b2450097de39cc585bd9d1e5ac605a9752df4f0
|
| --- /dev/null
|
| +++ b/build/android/write_ordered_libraries.gypi
|
| @@ -0,0 +1,42 @@
|
| +# Copyright 2013 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +# This file is meant to be included into an action to provide a rule that
|
| +# generates a json file with the list of dependent libraries needed for a given
|
| +# shared library or executable.
|
| +#
|
| +# To use this, create a gyp target with the following form:
|
| +# {
|
| +# 'actions': [
|
| +# 'variables': {
|
| +# 'input_libraries': 'shared library or executable to process',
|
| +# 'ordered_libraries_file': 'file to generate'
|
| +# },
|
| +# 'includes': [ '../../build/android/write_ordered_libraries.gypi' ],
|
| +# ],
|
| +# },
|
| +#
|
| +
|
| +{
|
| + 'action_name': 'ordered_libraries_<(_target_name)',
|
| + 'message': 'Writing dependency ordered libraries for <(_target_name).',
|
| + 'variables': {
|
| + 'input_libraries%': [],
|
| + },
|
| + 'inputs': [
|
| + '<(DEPTH)/build/android/gyp/util/build_utils.py',
|
| + '<(DEPTH)/build/android/gyp/write_ordered_libraries.py',
|
| + '<@(input_libraries)',
|
| + ],
|
| + 'outputs': [
|
| + '<(ordered_libraries_file)',
|
| + ],
|
| + 'action': [
|
| + 'python', '<(DEPTH)/build/android/gyp/write_ordered_libraries.py',
|
| + '--input-libraries=<(input_libraries)',
|
| + '--libraries-dir=<(SHARED_LIB_DIR)',
|
| + '--readelf=<(android_readelf)',
|
| + '--output=<(ordered_libraries_file)',
|
| + ],
|
| +}
|
|
|