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

Side by Side Diff: gyp/vulkanviewer.gyp

Issue 1903253003: VulkanViewer on Android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « gyp/shaderc.gyp ('k') | platform_tools/android/apps/settings.gradle » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP file to build performance testbench. 5 # GYP file to build performance testbench.
6 # 6 #
7 { 7 {
8 'includes': [ 8 'includes': [
9 'apptype_console.gypi', 9 'apptype_console.gypi',
10 ], 10 ],
(...skipping 24 matching lines...) Expand all
35 'gputest.gyp:skgputest', 35 'gputest.gyp:skgputest',
36 'jsoncpp.gyp:jsoncpp', 36 'jsoncpp.gyp:jsoncpp',
37 'skia_lib.gyp:skia_lib', 37 'skia_lib.gyp:skia_lib',
38 'tools.gyp:crash_handler', 38 'tools.gyp:crash_handler',
39 'tools.gyp:proc_stats', 39 'tools.gyp:proc_stats',
40 'tools.gyp:resources', 40 'tools.gyp:resources',
41 'tools.gyp:sk_tool_utils', 41 'tools.gyp:sk_tool_utils',
42 'tools.gyp:timer', 42 'tools.gyp:timer',
43 'tools.gyp:url_data_manager', 43 'tools.gyp:url_data_manager',
44 ], 44 ],
45 'conditions' : [
46 [ 'skia_os == "android"', {
47 'dependencies': [
48 'android_deps.gyp:Android_EntryPoint',
49 'android_deps.gyp:native_app_glue',
50 ],
51 'link_settings': {
52 'libraries': [
53 '-landroid',
54 ],
55 },
56 }],
57 ['skia_os != "android"', {
58 'sources/': [ ['exclude', '_android.(h|cpp)$'],
59 ],
60 }],
61 ['skia_os != "win"', {
62 'sources/': [ ['exclude', '_win.(h|cpp)$'],
63 ],
64 }],
65 ],
45 }, 66 },
46 ], 67 ],
47 } 68 }
OLDNEW
« no previous file with comments | « gyp/shaderc.gyp ('k') | platform_tools/android/apps/settings.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698