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

Unified Diff: build/android/write_ordered_libraries.gypi

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/tests/multiple_proguards/multiple_proguards.gyp ('k') | build/apk_browsertest.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/write_ordered_libraries.gypi
diff --git a/build/android/write_ordered_libraries.gypi b/build/android/write_ordered_libraries.gypi
deleted file mode 100644
index 1b52e71e4231cb33503188b69a25312fef6f4486..0000000000000000000000000000000000000000
--- a/build/android/write_ordered_libraries.gypi
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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)<(subtarget)',
- 'message': 'Writing dependency ordered libraries for <(_target_name)',
- 'variables': {
- 'input_libraries%': [],
- 'subtarget%': '',
- },
- '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),<(PRODUCT_DIR)',
- '--readelf=<(android_readelf)',
- '--output=<(ordered_libraries_file)',
- ],
-}
« no previous file with comments | « build/android/tests/multiple_proguards/multiple_proguards.gyp ('k') | build/apk_browsertest.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698