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

Unified Diff: build/android/build_android.gyp

Issue 659493003: Final step of the java_cpp_template -> java_cpp_enum migration. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: delete some more template files Created 6 years, 2 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
Index: build/android/build_android.gyp
diff --git a/build/android/build_android.gyp b/build/android/build_android.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..a78345a2aeabefd894645481cbffe8df6c26d9f1
--- /dev/null
+++ b/build/android/build_android.gyp
@@ -0,0 +1,37 @@
+# Copyright 2014 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_name': 'build_android_python_unittests',
+ 'type': 'none',
+ 'dependencies': [
+ 'java_cpp_enum_py_tests',
+ ],
+ },
+ {
+ 'target_name': 'java_cpp_enum_py_tests',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'run_java_cpp_enum_py_tests',
+ 'variables': {
+ 'stamp_file': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name).stamp',
+ },
+ 'inputs': [
+ 'gyp/java_cpp_enum.py',
+ 'gyp/java_cpp_enum_tests.py',
+ ],
+ 'outputs': [
+ '<(stamp_file)',
+ ],
+ 'action': [
+ 'python', 'gyp/java_cpp_enum_tests.py', '--stamp=<(stamp_file)'
+ ],
+ },
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698