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

Side by Side Diff: gyp/core.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/common_conditions.gypi ('k') | gyp/debugger.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 # Core Skia library code. 5 # Core Skia library code.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'core', 9 'target_name': 'core',
10 'product_name': 'skia_core', 10 'product_name': 'skia_core',
(...skipping 18 matching lines...) Expand all
29 '../src/sfnt', 29 '../src/sfnt',
30 '../src/image', 30 '../src/image',
31 '../src/opts', 31 '../src/opts',
32 '../src/utils', 32 '../src/utils',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild). 35 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild).
36 ], 36 ],
37 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], 37 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800],
38 'conditions': [ 38 'conditions': [
39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
40 'link_settings': { 40 'link_settings': {
41 'libraries': [ 41 'libraries': [
42 '-lpthread', 42 '-lpthread',
43 ], 43 ],
44 }, 44 },
45 }], 45 }],
46 [ 'skia_os == "mac"', { 46 [ 'skia_os == "mac"', {
47 'include_dirs': [ 47 'include_dirs': [
48 '../include/utils/mac', 48 '../include/utils/mac',
49 ], 49 ],
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 [ 'skia_os == "win"', { 115 [ 'skia_os == "win"', {
116 'include_dirs': [ 116 'include_dirs': [
117 'config/win', 117 'config/win',
118 ], 118 ],
119 }], 119 }],
120 ], 120 ],
121 }, 121 },
122 }, 122 },
123 ], 123 ],
124 } 124 }
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | gyp/debugger.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698