| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 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 declare_args() { | 6 declare_args() { |
| 7 } | 7 } |
| 8 | 8 |
| 9 skia_public_includes = [ | 9 skia_public_includes = [ |
| 10 "include/android", | 10 "include/android", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 } | 183 } |
| 184 } | 184 } |
| 185 | 185 |
| 186 component("skia") { | 186 component("skia") { |
| 187 public_configs = [ ":skia_public" ] | 187 public_configs = [ ":skia_public" ] |
| 188 configs += skia_library_configs | 188 configs += skia_library_configs |
| 189 | 189 |
| 190 deps = [ | 190 deps = [ |
| 191 "//third_party/expat", | 191 "//third_party/expat", |
| 192 "//third_party/giflib", | 192 "//third_party/giflib", |
| 193 "//third_party/libjpeg_turbo:libjpeg", | 193 "//third_party/libjpeg-turbo:libjpeg", |
| 194 "//third_party/libpng", | 194 "//third_party/libpng", |
| 195 "//third_party/libwebp", | 195 "//third_party/libwebp", |
| 196 "//third_party/sfntly", | 196 "//third_party/sfntly", |
| 197 "//third_party/zlib", | 197 "//third_party/zlib", |
| 198 ] | 198 ] |
| 199 if (is_x86) { | 199 if (is_x86) { |
| 200 deps += [ | 200 deps += [ |
| 201 ":opts_avx", | 201 ":opts_avx", |
| 202 ":opts_sse2", | 202 ":opts_sse2", |
| 203 ":opts_sse41", | 203 ":opts_sse41", |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 "tools/SkShaper_harfbuzz.cpp", | 611 "tools/SkShaper_harfbuzz.cpp", |
| 612 "tools/using_skia_and_harfbuzz.cpp", | 612 "tools/using_skia_and_harfbuzz.cpp", |
| 613 ] | 613 ] |
| 614 deps = [ | 614 deps = [ |
| 615 ":skia", | 615 ":skia", |
| 616 "//third_party/harfbuzz", | 616 "//third_party/harfbuzz", |
| 617 ] | 617 ] |
| 618 testonly = true | 618 testonly = true |
| 619 } | 619 } |
| 620 } | 620 } |
| OLD | NEW |