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

Side by Side Diff: gyp/visualbench.gyp

Issue 1415453009: Wire up SDL on Android (Closed) Base URL: https://skia.googlesource.com/skia.git@sdl
Patch Set: fix appurify Created 5 years, 1 month 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/views.gyp ('k') | include/views/SkOSWindow_SDL.h » ('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 2015 Google Inc. 1 # Copyright 2015 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 visual bench tool 5 # GYP file to build visual bench tool
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 27 matching lines...) Expand all
38 'jsoncpp.gyp:jsoncpp', 38 'jsoncpp.gyp:jsoncpp',
39 'gputest.gyp:skgputest', 39 'gputest.gyp:skgputest',
40 'skia_lib.gyp:skia_lib', 40 'skia_lib.gyp:skia_lib',
41 'tools.gyp:bitmap_region_decoder', 41 'tools.gyp:bitmap_region_decoder',
42 'tools.gyp:proc_stats', 42 'tools.gyp:proc_stats',
43 'tools.gyp:sk_tool_utils', 43 'tools.gyp:sk_tool_utils',
44 'tools.gyp:timer', 44 'tools.gyp:timer',
45 'views.gyp:views', 45 'views.gyp:views',
46 ], 46 ],
47 'conditions' : [ 47 'conditions' : [
48 [ 'skia_os == "android"', { 48 [ 'skia_os == "android" and skia_use_sdl == 0', {
49 'dependencies': [ 49 'dependencies': [
50 'android_deps.gyp:Android_VisualBench', 50 'android_deps.gyp:Android_VisualBench',
51 'android_deps.gyp:native_app_glue', 51 'android_deps.gyp:native_app_glue',
52 ], 52 ],
53 'link_settings': { 53 'link_settings': {
54 'libraries': [ 54 'libraries': [
55 '-landroid', 55 '-landroid',
56 '-lGLESv2', 56 '-lGLESv2',
57 '-lEGL', 57 '-lEGL',
58 ], 58 ],
59 }, 59 },
60 }], 60 }],
61 ], 61 ],
62 }, 62 },
63 ], 63 ],
64 } 64 }
OLDNEW
« no previous file with comments | « gyp/views.gyp ('k') | include/views/SkOSWindow_SDL.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698