| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 # e.g. it does: | 501 # e.g. it does: |
| 502 # SkASSERT(!"sk_out_of_memory"); | 502 # SkASSERT(!"sk_out_of_memory"); |
| 503 configs -= [ "//build/config/clang:extra_warnings" ] | 503 configs -= [ "//build/config/clang:extra_warnings" ] |
| 504 } | 504 } |
| 505 | 505 |
| 506 configs -= [ "//build/config/compiler:chromium_code" ] | 506 configs -= [ "//build/config/compiler:chromium_code" ] |
| 507 configs += [ | 507 configs += [ |
| 508 ":skia_library_config", | 508 ":skia_library_config", |
| 509 "//build/config/compiler:no_chromium_code" | 509 "//build/config/compiler:no_chromium_code" |
| 510 ] | 510 ] |
| 511 direct_dependent_configs = [ ":skia_config" ] | 511 public_configs = [ ":skia_config" ] |
| 512 | 512 |
| 513 deps = [ | 513 deps = [ |
| 514 ":skia_opts", | 514 ":skia_opts", |
| 515 "//base", | 515 "//base", |
| 516 "//base/third_party/dynamic_annotations", | 516 "//base/third_party/dynamic_annotations", |
| 517 "//third_party/zlib", | 517 "//third_party/zlib", |
| 518 ] | 518 ] |
| 519 | 519 |
| 520 if (is_win) { | 520 if (is_win) { |
| 521 configs -= [ | 521 configs -= [ |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 ":skia_library_config", | 705 ":skia_library_config", |
| 706 "//build/config/compiler:no_chromium_code" | 706 "//build/config/compiler:no_chromium_code" |
| 707 ] | 707 ] |
| 708 | 708 |
| 709 deps = [ | 709 deps = [ |
| 710 "//base", | 710 "//base", |
| 711 ] | 711 ] |
| 712 | 712 |
| 713 visibility = [ ":skia" ] | 713 visibility = [ ":skia" ] |
| 714 } | 714 } |
| OLD | NEW |