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("//testing/test.gni") | 7 import("//testing/test.gni") |
8 if (current_cpu == "arm") { | 8 if (current_cpu == "arm") { |
9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 } | 10 } |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 if (is_clang) { | 434 if (is_clang) { |
435 # Skia won't compile with some of the more strict clang warnings. | 435 # Skia won't compile with some of the more strict clang warnings. |
436 # e.g. it does: | 436 # e.g. it does: |
437 # SkASSERT(!"sk_out_of_memory"); | 437 # SkASSERT(!"sk_out_of_memory"); |
438 configs -= [ "//build/config/clang:extra_warnings" ] | 438 configs -= [ "//build/config/clang:extra_warnings" ] |
439 } | 439 } |
440 | 440 |
441 configs -= [ "//build/config/compiler:chromium_code" ] | 441 configs -= [ "//build/config/compiler:chromium_code" ] |
442 configs += [ | 442 configs += [ |
443 ":skia_library_config", | 443 ":skia_library_config", |
| 444 "//build/config:precompiled_headers", |
444 "//build/config/compiler:no_chromium_code", | 445 "//build/config/compiler:no_chromium_code", |
445 ] | 446 ] |
446 public_configs = [ ":skia_config" ] | 447 public_configs = [ ":skia_config" ] |
447 | 448 |
448 deps = [ | 449 deps = [ |
449 ":skia_opts", | 450 ":skia_opts", |
450 "//base", | 451 "//base", |
451 "//base/third_party/dynamic_annotations", | 452 "//base/third_party/dynamic_annotations", |
452 "//third_party/zlib", | 453 "//third_party/zlib", |
453 ] | 454 ] |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 639 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
639 ] | 640 ] |
640 | 641 |
641 deps = [ | 642 deps = [ |
642 ":skia", | 643 ":skia", |
643 "//base", | 644 "//base", |
644 "//base/test:test_support", | 645 "//base/test:test_support", |
645 ] | 646 ] |
646 } | 647 } |
647 } | 648 } |
OLD | NEW |