| 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" || current_cpu == "arm64") { | 8 if (current_cpu == "arm" || current_cpu == "arm64") { |
| 9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 } | 10 } |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 set_sources_assignment_filter([]) | 411 set_sources_assignment_filter([]) |
| 412 | 412 |
| 413 sources += [ | 413 sources += [ |
| 414 "//third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp", | 414 "//third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp", |
| 415 "//third_party/skia/src/utils/mac/SkStream_mac.cpp", | 415 "//third_party/skia/src/utils/mac/SkStream_mac.cpp", |
| 416 ] | 416 ] |
| 417 | 417 |
| 418 set_sources_assignment_filter(sources_assignment_filter) | 418 set_sources_assignment_filter(sources_assignment_filter) |
| 419 } | 419 } |
| 420 | 420 |
| 421 if (is_android && (!enable_basic_printing && !enable_print_preview)) { | 421 if (is_android) { |
| 422 sources -= [ "ext/skia_utils_base.cc" ] | 422 sources -= [ "ext/skia_utils_base.cc" ] |
| 423 } | 423 } |
| 424 | 424 |
| 425 # Fixup skia library sources. | 425 # Fixup skia library sources. |
| 426 if (is_win) { | 426 if (is_win) { |
| 427 sources -= [ | 427 sources -= [ |
| 428 "//third_party/skia/src/ports/SkOSFile_posix.cpp", | 428 "//third_party/skia/src/ports/SkOSFile_posix.cpp", |
| 429 "//third_party/skia/src/ports/SkTLS_pthread.cpp", | 429 "//third_party/skia/src/ports/SkTLS_pthread.cpp", |
| 430 "//third_party/skia/src/ports/SkTime_Unix.cpp", | 430 "//third_party/skia/src/ports/SkTime_Unix.cpp", |
| 431 ] | 431 ] |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 sources = [ | 663 sources = [ |
| 664 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 664 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 665 ] | 665 ] |
| 666 | 666 |
| 667 deps = [ | 667 deps = [ |
| 668 ":skia", | 668 ":skia", |
| 669 "//base", | 669 "//base", |
| 670 ] | 670 ] |
| 671 } | 671 } |
| 672 } | 672 } |
| OLD | NEW |