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

Unified Diff: build/android/push_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/package_resources_action.gypi ('k') | build/android/pylib/device/commands/commands.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/push_libraries.gypi
diff --git a/build/android/push_libraries.gypi b/build/android/push_libraries.gypi
deleted file mode 100644
index c96e5a5b269c079767381767b682fb1223a1408f..0000000000000000000000000000000000000000
--- a/build/android/push_libraries.gypi
+++ /dev/null
@@ -1,49 +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
-# pushes stripped shared libraries to the attached Android device. This should
-# only be used with the gyp_managed_install flag set.
-#
-# To use this, create a gyp target with the following form:
-# {
-# 'actions': [
-# 'variables': {
-# 'ordered_libraries_file': 'file generated by write_ordered_libraries'
-# 'strip_stamp': 'stamp from strip action to block on'
-# 'libraries_source_dir': 'location where stripped libraries are stored'
-# 'device_library_dir': 'location on the device where to put pushed libraries',
-# 'push_stamp': 'file to touch when the action is complete'
-# 'configuration_name': 'The build CONFIGURATION_NAME'
-# },
-# 'includes': [ '../../build/android/push_libraries.gypi' ],
-# ],
-# },
-#
-
-{
- 'action_name': 'push_libraries_<(_target_name)',
- 'message': 'Pushing libraries to device for <(_target_name)',
- 'inputs': [
- '<(DEPTH)/build/android/gyp/util/build_utils.py',
- '<(DEPTH)/build/android/gyp/util/md5_check.py',
- '<(DEPTH)/build/android/gyp/push_libraries.py',
- '<(strip_stamp)',
- '<(strip_additional_stamp)',
- '<(build_device_config_path)',
- '<(pack_arm_relocations_stamp)',
- ],
- 'outputs': [
- '<(push_stamp)',
- ],
- 'action': [
- 'python', '<(DEPTH)/build/android/gyp/push_libraries.py',
- '--build-device-configuration=<(build_device_config_path)',
- '--libraries-dir=<(libraries_source_dir)',
- '--device-dir=<(device_library_dir)',
- '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
- '--stamp=<(push_stamp)',
- '--configuration-name=<(configuration_name)',
- ],
-}
« no previous file with comments | « build/android/package_resources_action.gypi ('k') | build/android/pylib/device/commands/commands.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698