43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
|
# 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)',
|
||
|
],
|
||
|
}
|