| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/skia/gn/shared_sources.gni") | 10 import("//third_party/skia/gn/shared_sources.gni") |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "//third_party/skia/src/core", | 100 "//third_party/skia/src/core", |
| 101 "//third_party/skia/src/effects/gradients", | 101 "//third_party/skia/src/effects/gradients", |
| 102 "//third_party/skia/src/image", | 102 "//third_party/skia/src/image", |
| 103 "//third_party/skia/src/opts", | 103 "//third_party/skia/src/opts", |
| 104 "//third_party/skia/src/pdf", | 104 "//third_party/skia/src/pdf", |
| 105 "//third_party/skia/src/ports", | 105 "//third_party/skia/src/ports", |
| 106 "//third_party/skia/src/sfnt", | 106 "//third_party/skia/src/sfnt", |
| 107 "//third_party/skia/src/utils", | 107 "//third_party/skia/src/utils", |
| 108 "//third_party/skia/src/lazy", | 108 "//third_party/skia/src/lazy", |
| 109 "//third_party/skia/third_party/gif", | 109 "//third_party/skia/third_party/gif", |
| 110 "//third_party/skia/third_partylibjpeg-turbo", |
| 110 ] | 111 ] |
| 111 if (is_mac || is_ios) { | 112 if (is_mac || is_ios) { |
| 112 include_dirs += [ "//third_party/skia/include/utils/mac" ] | 113 include_dirs += [ "//third_party/skia/include/utils/mac" ] |
| 113 } | 114 } |
| 114 if (is_mac) { | 115 if (is_mac) { |
| 115 include_dirs += [ "//third_party/skia/include/utils/ios" ] | 116 include_dirs += [ "//third_party/skia/include/utils/ios" ] |
| 116 } | 117 } |
| 117 | 118 |
| 118 defines = [] | 119 defines = [] |
| 119 | 120 |
| (...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 | 717 |
| 717 deps = [ | 718 deps = [ |
| 718 ":skia", | 719 ":skia", |
| 719 "//base", | 720 "//base", |
| 720 "//base/test:test_support", | 721 "//base/test:test_support", |
| 721 "//build/config/sanitizers:deps", | 722 "//build/config/sanitizers:deps", |
| 722 "//build/win:default_exe_manifest", | 723 "//build/win:default_exe_manifest", |
| 723 ] | 724 ] |
| 724 } | 725 } |
| 725 } | 726 } |
| OLD | NEW |