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

Side by Side Diff: gyp/core.gyp

Issue 1890483002: Move CPU feature detection to its own file. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: link 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 | « no previous file | gyp/core.gypi » ('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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 [ 'skia_os == "win"', { 80 [ 'skia_os == "win"', {
81 'include_dirs': [ 81 'include_dirs': [
82 'config/win', 82 'config/win',
83 ], 83 ],
84 }], 84 }],
85 [ 'skia_os == "android"', { 85 [ 'skia_os == "android"', {
86 'dependencies': [ 86 'dependencies': [
87 'android_deps.gyp:cpu_features', 87 'android_deps.gyp:cpu_features',
88 ], 88 ],
89 }], 89 }],
90 [ 'skia_arch_type == "arm"', {
91 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android.
92 'sources': [
93 '../src/core/SkUtilsArm.cpp',
94 '../src/core/SkUtilsArm.h',
95 ],
96 }],
97 ['skia_gpu == 1', { 90 ['skia_gpu == 1', {
98 'include_dirs': [ 91 'include_dirs': [
99 '../include/gpu', 92 '../include/gpu',
100 '../src/gpu', 93 '../src/gpu',
101 ], 94 ],
102 }], 95 }],
103 ], 96 ],
104 'direct_dependent_settings': { 97 'direct_dependent_settings': {
105 'include_dirs': [ 98 'include_dirs': [
106 '../include/c', 99 '../include/c',
(...skipping 15 matching lines...) Expand all
122 [ 'skia_os == "win"', { 115 [ 'skia_os == "win"', {
123 'include_dirs': [ 116 'include_dirs': [
124 'config/win', 117 'config/win',
125 ], 118 ],
126 }], 119 }],
127 ], 120 ],
128 }, 121 },
129 }, 122 },
130 ], 123 ],
131 } 124 }
OLDNEW
« no previous file with comments | « no previous file | gyp/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698