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

Unified Diff: build/build_output_dirs_android.gyp

Issue 13261024: Make write_library_dependencies.py find all transitive dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pushlib
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/write_ordered_libraries.py ('k') | build/common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/build_output_dirs_android.gyp
diff --git a/build/build_output_dirs_android.gyp b/build/build_output_dirs_android.gyp
deleted file mode 100644
index cc35e6d871c03af9743c7a8aea6e061712c80b5c..0000000000000000000000000000000000000000
--- a/build/build_output_dirs_android.gyp
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (c) 2012 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.
-{
- 'targets': [
- {
- # Target for creating common output build directories. Creating output
- # dirs beforehand ensures that build scripts can assume these folders to
- # exist and there are no race conditions resulting from build scripts
- # trying to create these directories.
- # The build/java.gypi target depends on this target.
- 'target_name': 'build_output_dirs',
- 'type': 'none',
- 'actions': [
- {
- 'action_name': 'create_java_output_dirs',
- 'variables' : {
- 'output_dirs' : [
- '<(PRODUCT_DIR)/apks',
- '<(PRODUCT_DIR)/lib.java',
- '<(PRODUCT_DIR)/test.lib.java',
- ]
- },
- 'inputs' : [],
- # By not specifying any outputs, we ensure that this command isn't
- # re-run when the output directories are touched (i.e. apks are
- # written to them).
- 'outputs': [''],
- 'action': [
- 'mkdir',
- '-p',
- '<@(output_dirs)',
- ],
- },
- ],
- }, # build_output_dirs
- ], # targets
-}
« no previous file with comments | « build/android/write_ordered_libraries.py ('k') | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698