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

Side by Side Diff: gyp/gputest.gyp

Issue 1926163002: Delete ChromeOS code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « gyp/gpu.gyp ('k') | gyp/icu.gyp » ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skgputest', 8 'target_name': 'skgputest',
9 'product_name': 'skia_skgputest', 9 'product_name': 'skia_skgputest',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 23 matching lines...) Expand all
34 'conditions': [ 34 'conditions': [
35 [ 'skia_mesa', { 'dependencies': [ 'osmesa' ] } ], 35 [ 'skia_mesa', { 'dependencies': [ 'osmesa' ] } ],
36 [ 'skia_angle', { 36 [ 'skia_angle', {
37 'dependencies': [ 37 'dependencies': [
38 'angle.gyp:*', 38 'angle.gyp:*',
39 ], 39 ],
40 'export_dependent_settings': [ 40 'export_dependent_settings': [
41 'angle.gyp:*', 41 'angle.gyp:*',
42 ], 42 ],
43 }], 43 }],
44 [ '(skia_os == "linux" or skia_os == "chromeos") and skia_egl == 1', { 44 [ 'skia_os == "linux" and skia_egl == 1', {
45 'link_settings': { 45 'link_settings': {
46 'libraries': [ 46 'libraries': [
47 '-lEGL', 47 '-lEGL',
48 '-lGLESv2', 48 '-lGLESv2',
49 ], 49 ],
50 }, 50 },
51 }], 51 }],
52 [ '(skia_os == "linux" or skia_os == "chromeos") and skia_egl == 0', { 52 [ 'skia_os == "linux" and skia_egl == 0', {
53 'link_settings': { 53 'link_settings': {
54 'libraries': [ 54 'libraries': [
55 '-lGL', 55 '-lGL',
56 '-lGLU', 56 '-lGLU',
57 '-lX11', 57 '-lX11',
58 ], 58 ],
59 }, 59 },
60 }], 60 }],
61 [ 'skia_os == "android"', { 61 [ 'skia_os == "android"', {
62 'defines': [ 62 'defines': [
63 'GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE=1', 63 'GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE=1',
64 ], 64 ],
65 'link_settings': { 65 'link_settings': {
66 'libraries': [ 66 'libraries': [
67 '-lGLESv2', 67 '-lGLESv2',
68 '-lEGL', 68 '-lEGL',
69 ], 69 ],
70 }, 70 },
71 }], 71 }],
72 ['skia_os in ["linux", "win", "mac", "chromeos", "android", "ios"]', { 72 ['skia_os in ["linux", "win", "mac", "android", "ios"]', {
73 'sources/': [ ['exclude', '_none\.(h|cpp)$'],], 73 'sources/': [ ['exclude', '_none\.(h|cpp)$'],],
74 }], 74 }],
75 ['skia_os != "win"', { 75 ['skia_os != "win"', {
76 'sources/': [ ['exclude', '_win\.(h|cpp)$'],], 76 'sources/': [ ['exclude', '_win\.(h|cpp)$'],],
77 }], 77 }],
78 ['skia_os != "mac"', { 78 ['skia_os != "mac"', {
79 'sources/': [ ['exclude', '_mac\.(h|cpp|m|mm)$'],], 79 'sources/': [ ['exclude', '_mac\.(h|cpp|m|mm)$'],],
80 }], 80 }],
81 ['skia_os != "linux" and skia_os != "chromeos"', { 81 ['skia_os != "linux"', {
82 'sources/': [ ['exclude', '_glx\.(h|cpp)$'],], 82 'sources/': [ ['exclude', '_glx\.(h|cpp)$'],],
83 }], 83 }],
84 ['skia_os != "ios"', { 84 ['skia_os != "ios"', {
85 'sources/': [ ['exclude', '_iOS\.(h|cpp|m|mm)$'],], 85 'sources/': [ ['exclude', '_iOS\.(h|cpp|m|mm)$'],],
86 }], 86 }],
87 ['skia_os != "android"', { 87 ['skia_os != "android"', {
88 'sources/': [ ['exclude', '_android\.(h|cpp)$'],], 88 'sources/': [ ['exclude', '_android\.(h|cpp)$'],],
89 }], 89 }],
90 ['skia_egl == 0', { 90 ['skia_egl == 0', {
91 'sources/': [ ['exclude', '_egl\.(h|cpp)$'],], 91 'sources/': [ ['exclude', '_egl\.(h|cpp)$'],],
(...skipping 21 matching lines...) Expand all
113 'conditions': [ 113 'conditions': [
114 [ 'skia_os == "mac"', { 114 [ 'skia_os == "mac"', {
115 'link_settings': { 'library_dirs' : [ '/opt/X11/lib' ], }, 115 'link_settings': { 'library_dirs' : [ '/opt/X11/lib' ], },
116 'include_dirs': [ '/opt/X11/include', ], 116 'include_dirs': [ '/opt/X11/include', ],
117 }], 117 }],
118 ], 118 ],
119 }, 119 },
120 }, 120 },
121 ], 121 ],
122 } 122 }
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | gyp/icu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698