OLD | NEW |
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 Loading... |
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 'sources': [ | 80 'sources': [ |
81 '../src/core/SkPaintOptionsAndroid.cpp', | 81 '../src/core/SkPaintOptionsAndroid.cpp', |
82 ], | 82 ], |
83 }], | 83 }], |
84 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', { | 84 [ 'skia_arch_type == "arm" and armv7 == 1', { |
85 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system,
not only Android. | 85 'conditions': [ |
86 'sources': [ | 86 ['skia_os in ["android", "linux"]', { |
87 '../src/core/SkPaintOptionsAndroid.cpp', | 87 'sources': [ |
88 '../src/core/SkUtilsArm.cpp', | 88 '../src/core/SkUtilsArm.cpp', |
89 '../src/core/SkUtilsArm.h', | 89 '../src/core/SkUtilsArm.h', |
| 90 ], |
| 91 }], |
| 92 ['skia_os == "android"', { |
| 93 'sources': [ |
| 94 '../src/core/SkPaintOptionsAndroid.cpp', |
| 95 ], |
| 96 }], |
90 ], | 97 ], |
91 }], | 98 }], |
92 ['skia_gpu == 1', { | 99 ['skia_gpu == 1', { |
93 'include_dirs': [ | 100 'include_dirs': [ |
94 '../include/gpu', | 101 '../include/gpu', |
95 '../src/gpu', | 102 '../src/gpu', |
96 ], | 103 ], |
97 }], | 104 }], |
98 ], | 105 ], |
99 'direct_dependent_settings': { | 106 'direct_dependent_settings': { |
(...skipping 27 matching lines...) Expand all Loading... |
127 }, | 134 }, |
128 }, | 135 }, |
129 ], | 136 ], |
130 } | 137 } |
131 | 138 |
132 # Local Variables: | 139 # Local Variables: |
133 # tab-width:2 | 140 # tab-width:2 |
134 # indent-tabs-mode:nil | 141 # indent-tabs-mode:nil |
135 # End: | 142 # End: |
136 # vim: set expandtab tabstop=2 shiftwidth=2: | 143 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |