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

Unified Diff: gyp/gpuVk.gyp

Issue 1718693002: Add vulkan files into skia repo. (Closed) Base URL: https://skia.googlesource.com/skia.git@merge
Patch Set: fix path Created 4 years, 10 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 | « no previous file | gyp/gpuVk.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/gpuVk.gyp
diff --git a/gyp/gpuVk.gyp b/gyp/gpuVk.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..6f57441513a6669c0b1e25fea7d43c150a88bdce
--- /dev/null
+++ b/gyp/gpuVk.gyp
@@ -0,0 +1,202 @@
+#
+# Copyright 2015 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+#
+
+# GYP for building gpu
+{
+ 'variables': {
+ 'variables':
+ {
+ 'vulkan_merged_into_skia%': '0',
+ },
+ 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)',
+ 'conditions' : [
+ [ 'vulkan_merged_into_skia == 1', {
+ 'skia_gyp_path%': '../gyp',
+ 'skia_root_path%': '../',
+ 'vulkan_third_party_path%': '..\\third_party',
+ }, {
+ 'skia_gyp_path%': '../skia/gyp',
+ 'skia_root_path%': '../skia',
+ 'vulkan_third_party_path%': '..\\..\\third_party',
+ }],
+ ],
+ },
+ 'target_defaults': {
+ 'defines': [
+ 'VK_PROTOTYPES',
+ ],
+ 'conditions': [
+ ['skia_os == "win"', {
+ 'all_dependent_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalDependencies': [
+ 'vulkan-1.lib',
+ 'shaderc.lib',
+ 'shaderc_util.lib',
+ 'glslang.lib',
+ 'OSDependent.lib',
+ 'OGLCompiler.lib',
+ 'SPIRV-Tools.lib',
+ 'SPIRV.lib',
+ ],
+ },
+ },
+ },
+ 'link_settings': {
+ 'configurations': {
+ 'Debug': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': [
+ '<(vulkan_third_party_path)\\vulkan\\',
+ '<(vulkan_third_party_path)\\shaderc\\Debug\\',
+ ],
+ },
+ },
+ },
+ 'Release': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': [
+ '<(vulkan_third_party_path)\\vulkan\\',
+ '<(vulkan_third_party_path)\\shaderc\\Release\\',
+ ],
+ },
+ },
+ },
+ 'Debug_x64': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': [
+ '<(vulkan_third_party_path)\\vulkan\\',
+ '<(vulkan_third_party_path)\\shaderc\\Debug\\',
+ ],
+ },
+ },
+ },
+ 'Release_x64': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': [
+ '<(vulkan_third_party_path)\\vulkan\\',
+ '<(vulkan_third_party_path)\\shaderc\\Release\\',
+ ],
+ },
+ },
+ },
+ },
+ },
+ }],
+ ['skia_os != "win"', {
+ 'sources/': [ ['exclude', '_win.(h|cpp)$'],
+ ],
+ }],
+ ['skia_os != "mac"', {
+ 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
+ ],
+ }],
+ ['skia_os != "linux" and skia_os != "chromeos"', {
+ 'sources/': [ ['exclude', '_glx.(h|cpp)$'],
+ ],
+ }],
+ ['skia_os != "ios"', {
+ 'sources/': [ ['exclude', '_iOS.(h|cpp|m|mm)$'],
+ ],
+ }],
+ ['skia_os != "android"', {
+ 'sources/': [ ['exclude', '_android.(h|cpp)$'],
+ ],
+ }],
+ ['skia_os != "nacl"', {
+ 'sources/': [ ['exclude', '_nacl.(h|cpp)$'],
+ ],
+ }],
+ ['skia_os == "nacl" or skia_egl == 0', {
+ 'sources/': [ ['exclude', '_egl.(h|cpp)$'],
+ ],
+ }],
+ ['skia_os == "android"', {
+ 'sources/': [ ['exclude', 'GrGLCreateNativeInterface_egl.cpp'],
+ ],
+ }],
+ ['skia_egl == 1', {
+ 'sources/': [ ['exclude', '_glx.(h|cpp)$'],
+ ],
+ }],
+ # nullify the targets in this gyp file if skia_gpu is 0
+ [ 'skia_gpu == 0', {
+ 'sources/': [
+ ['exclude', '.*'],
+ ],
+ 'defines/': [
+ ['exclude', '.*'],
+ ],
+ 'include_dirs/': [
+ ['exclude', '.*'],
+ ],
+ 'link_settings': {
+ 'libraries/': [
+ ['exclude', '.*'],
+ ],
+ },
+ 'direct_dependent_settings': {
+ 'defines/': [
+ ['exclude', '.*'],
+ ],
+ 'include_dirs/': [
+ ['exclude', '.*'],
+ ],
+ },
+ }],
+ ],
+ 'direct_dependent_settings': {
+ 'conditions': [
+ [ 'skia_os == "win"', {
+ 'defines': [
+ 'GR_GL_FUNCTION_TYPE=__stdcall',
+ ],
+ }],
+ ],
+ 'include_dirs': [
+ '../include/gpu',
+ '../third_party/'
+ ],
+ },
+ },
+ 'targets': [
+ {
+ 'target_name': 'skgpu_vk',
+ 'product_name': 'skia_skgpu_vk',
+ 'type': 'static_library',
+ 'standalone_static_library': 1,
+ 'dependencies': [
+ '<(skia_gyp_path)/core.gyp:*',
+ '<(skia_gyp_path)/utils.gyp:utils',
+ '<(skia_gyp_path)/etc1.gyp:libetc1',
+ '<(skia_gyp_path)/ktx.gyp:libSkKTX',
+ ],
+ 'includes': [
+ 'gpuVk.gypi',
+ ],
+ 'include_dirs': [
+ '../include/gpu',
+ '../src/gpu',
+ '../third_party',
+ '<(skia_root_path)/include/gpu',
+ '<(skia_root_path)/include/private',
+ '<(skia_root_path)/src/core',
+ '<(skia_root_path)/src/gpu',
+ '<(skia_root_path)/src/image/',
+ ],
+ 'sources': [
+ '<@(skgpu_vk_sources)',
+ 'gpuVk.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
+ ],
+ },
+ ],
+}
« no previous file with comments | « no previous file | gyp/gpuVk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698