| 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 if (cpu_arch == "arm") { | 7 if (cpu_arch == "arm") { |
| 8 import("//build/config/arm.gni") | 8 import("//build/config/arm.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "//third_party/skia/include/images", | 101 "//third_party/skia/include/images", |
| 102 "//third_party/skia/include/lazy", | 102 "//third_party/skia/include/lazy", |
| 103 "//third_party/skia/include/pathops", | 103 "//third_party/skia/include/pathops", |
| 104 "//third_party/skia/include/pdf", | 104 "//third_party/skia/include/pdf", |
| 105 "//third_party/skia/include/pipe", | 105 "//third_party/skia/include/pipe", |
| 106 "//third_party/skia/include/ports", | 106 "//third_party/skia/include/ports", |
| 107 "//third_party/skia/include/utils", | 107 "//third_party/skia/include/utils", |
| 108 "//third_party/skia/src/core", | 108 "//third_party/skia/src/core", |
| 109 "//third_party/skia/src/image", | 109 "//third_party/skia/src/image", |
| 110 "//third_party/skia/src/opts", | 110 "//third_party/skia/src/opts", |
| 111 "//third_party/skia/src/pdf", |
| 111 "//third_party/skia/src/ports", | 112 "//third_party/skia/src/ports", |
| 112 "//third_party/skia/src/sfnt", | 113 "//third_party/skia/src/sfnt", |
| 113 "//third_party/skia/src/utils", | 114 "//third_party/skia/src/utils", |
| 114 "//third_party/skia/src/lazy", | 115 "//third_party/skia/src/lazy", |
| 115 ] | 116 ] |
| 116 | 117 |
| 117 defines = gypi_skia_defines.skia_for_chromium_defines | 118 defines = gypi_skia_defines.skia_for_chromium_defines |
| 118 | 119 |
| 119 defines += [ | 120 defines += [ |
| 120 "SK_ENABLE_INST_COUNT=0", | 121 "SK_ENABLE_INST_COUNT=0", |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 ":skia_library_config", | 690 ":skia_library_config", |
| 690 "//build/config/compiler:no_chromium_code", | 691 "//build/config/compiler:no_chromium_code", |
| 691 ] | 692 ] |
| 692 | 693 |
| 693 deps = [ | 694 deps = [ |
| 694 "//base", | 695 "//base", |
| 695 ] | 696 ] |
| 696 | 697 |
| 697 visibility = [ ":skia" ] | 698 visibility = [ ":skia" ] |
| 698 } | 699 } |
| OLD | NEW |