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

Unified Diff: platform_tools/android/gyp/vulkanviewer.gypi

Issue 1945103003: Rename VulkanViewer to Viewer, take 2. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix android path Created 4 years, 7 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 | « platform_tools/android/gyp/viewer.gypi ('k') | tools/viewer/Application.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/android/gyp/vulkanviewer.gypi
diff --git a/platform_tools/android/gyp/vulkanviewer.gypi b/platform_tools/android/gyp/vulkanviewer.gypi
deleted file mode 100644
index b431e84269493525c56566745cd20d66f2f38b9f..0000000000000000000000000000000000000000
--- a/platform_tools/android/gyp/vulkanviewer.gypi
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2015 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-{
- 'targets': [
- {
- 'target_name': 'CopyVulkanViewerDeps',
- 'type': 'none',
- 'dependencies': [
- 'skia_lib.gyp:skia_lib',
- 'vulkanviewer.gyp:vulkanviewer',
- ],
- 'copies': [
- {
- 'destination': '<(android_base)/apps/vulkanviewer/src/main/libs/<(android_arch)',
- 'conditions': [
- [ 'skia_shared_lib', {
- 'files': [
- '<(SHARED_LIB_DIR)/libskia_android.so',
- '<(SHARED_LIB_DIR)/libvulkanviewer.so',
- ]}, {
- 'files': [
- '<(SHARED_LIB_DIR)/libvulkanviewer.so',
- ]}
- ],
- ],
- },
- ],
- },
- {
- 'target_name': 'VulkanViewer_APK',
- 'type': 'none',
- 'dependencies': [ 'CopyVulkanViewerDeps', ],
- 'actions': [
- {
- 'action_name': 'SkiaVulkanViewer_apk',
- 'inputs': [
- '<(android_base)/apps/vulkanviewer/src/main/AndroidManifest.xml',
- '<(android_base)/apps/vulkanviewer/src/main/java/com/skia/vulkanviewer/VulkanViewerActivity.java',
- '<(android_base)/apps/vulkanviewer/src/main/libs/<(android_arch)/libvulkanviewer.so',
-
- ],
- 'conditions': [
- [ 'skia_shared_lib', {
- 'inputs': [
- '<(android_base)/apps/vulkanviewer/src/main/libs/<(android_arch)/libskia_android.so',
- ],
- }],
- ],
- 'outputs': [
- '../apps/vulkanviewer/build/outputs/apk/',
- ],
- 'action': [
- '<(android_base)/apps/gradlew',
- ':vulkanviewer:assemble<(android_variant)<(android_buildtype)',
- '-p<(android_base)/apps/vulkanviewer',
- '-PsuppressNativeBuild',
- '--daemon',
- ],
- },
- ],
- },
- ],
-}
« no previous file with comments | « platform_tools/android/gyp/viewer.gypi ('k') | tools/viewer/Application.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698