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

Unified Diff: build/android/java_google_api_keys.gyp

Issue 2331893004: Remove GYP files in breakpad, build, and tools. (Closed)
Patch Set: Created 4 years, 3 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/java_cpp_template.gypi ('k') | build/android/jinja_template.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/java_google_api_keys.gyp
diff --git a/build/android/java_google_api_keys.gyp b/build/android/java_google_api_keys.gyp
deleted file mode 100644
index df046b6da782fbd84ceb855561abb626c3403198..0000000000000000000000000000000000000000
--- a/build/android/java_google_api_keys.gyp
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2015 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 provides an action to generate Java source files from the Google
-# API keys using a Python script.
-
-{
- 'targets': [
- {
- 'target_name': 'google_api_keys_java',
- 'type': 'none',
- 'variables': {
- # Location where all generated Java sources will be placed.
- 'output_dir': '<(SHARED_INTERMEDIATE_DIR)/java_google_api_keys',
- 'generator_path': '<(DEPTH)/build/android/gyp/java_google_api_keys.py',
- 'output_file': '<(output_dir)/GoogleAPIKeys.java',
- },
- 'direct_dependent_settings': {
- 'variables': {
- # Ensure that the output directory is used in the class path
- # when building targets that depend on this one.
- 'generated_src_dirs': [
- '<(output_dir)/',
- ],
- },
- },
- 'actions': [
- {
- 'action_name': 'generate_java_google_api_keys',
- 'inputs': [
- '<(generator_path)',
- ],
- 'outputs': [
- '<(output_file)',
- ],
- 'action': [
- 'python', '<(generator_path)', '--out', '<(output_file)'
- ],
- 'message': 'Generating Java from Google API Keys header',
- },
- ],
- },
- ],
-}
« no previous file with comments | « build/android/java_cpp_template.gypi ('k') | build/android/jinja_template.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698