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

Side by Side Diff: gyp/core.gyp

Issue 153093003: Gyp file changes for the android framework. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 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
OLDNEW
1 # Core Skia library code. 1 # Core Skia library code.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'core', 5 'target_name': 'core',
6 'product_name': 'skia_core', 6 'product_name': 'skia_core',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76',
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 [ 'skia_os == "win"', { 74 [ 'skia_os == "win"', {
75 'include_dirs': [ 75 'include_dirs': [
76 'config/win', 76 'config/win',
77 ], 77 ],
78 }], 78 }],
79 [ 'skia_os == "android"', { 79 [ 'skia_os == "android"', {
80 'dependencies': [ 80 'dependencies': [
81 'android_deps.gyp:cpu_features', 81 'android_deps.gyp:cpu_features',
82 ], 82 ],
83 }], 83 }],
84 [ 'skia_android_framework', {
85 'libraries': [
86 # Required for SkAtomics_android.h
87 '-lcutils',
88 ],
89 }],
84 [ 'skia_arch_type == "arm"', { 90 [ 'skia_arch_type == "arm"', {
85 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android. 91 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android.
86 'sources': [ 92 'sources': [
87 '../src/core/SkUtilsArm.cpp', 93 '../src/core/SkUtilsArm.cpp',
88 '../src/core/SkUtilsArm.h', 94 '../src/core/SkUtilsArm.h',
89 ], 95 ],
90 }], 96 }],
91 ['skia_gpu == 1', { 97 ['skia_gpu == 1', {
92 'include_dirs': [ 98 'include_dirs': [
93 '../include/gpu', 99 '../include/gpu',
(...skipping 25 matching lines...) Expand all
119 [ 'skia_os == "win"', { 125 [ 'skia_os == "win"', {
120 'include_dirs': [ 126 'include_dirs': [
121 'config/win', 127 'config/win',
122 ], 128 ],
123 }], 129 }],
124 ], 130 ],
125 }, 131 },
126 }, 132 },
127 ], 133 ],
128 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698