| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 "//base", | 400 "//base", |
| 401 "//base/third_party/dynamic_annotations", | 401 "//base/third_party/dynamic_annotations", |
| 402 ] | 402 ] |
| 403 | 403 |
| 404 if (is_linux) { | 404 if (is_linux) { |
| 405 if (use_pango) { | 405 if (use_pango) { |
| 406 configs += [ "//build/config/linux/pangocairo" ] | 406 configs += [ "//build/config/linux/pangocairo" ] |
| 407 } | 407 } |
| 408 deps += [ | 408 deps += [ |
| 409 "//build/linux:fontconfig", | 409 "//build/linux:fontconfig", |
| 410 "//build/linux:freetype2", | 410 "//build/config/freetype", |
| 411 "//third_party/expat", | 411 "//third_party/expat", |
| 412 "//third_party/icu:icuuc", | 412 "//third_party/icu:icuuc", |
| 413 ] | 413 ] |
| 414 } | 414 } |
| 415 | 415 |
| 416 if (is_android) { | 416 if (is_android) { |
| 417 deps += [ | 417 deps += [ |
| 418 "//third_party/android_tools:cpu_features", | 418 "//third_party/android_tools:cpu_features", |
| 419 "//third_party/expat", | 419 "//third_party/expat", |
| 420 "//third_party/freetype", | 420 "//build/config/freetype", |
| 421 ] | 421 ] |
| 422 } | 422 } |
| 423 | 423 |
| 424 if (skia_support_pdf) { | 424 if (skia_support_pdf) { |
| 425 deps += [ | 425 deps += [ |
| 426 "//third_party/sfntly", | 426 "//third_party/sfntly", |
| 427 "//third_party/zlib", | 427 "//third_party/zlib", |
| 428 ] | 428 ] |
| 429 sources += skia_pdf_sources | 429 sources += skia_pdf_sources |
| 430 } else { | 430 } else { |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 | 700 |
| 701 deps = [ | 701 deps = [ |
| 702 ":skia", | 702 ":skia", |
| 703 "//base", | 703 "//base", |
| 704 "//base/test:test_support", | 704 "//base/test:test_support", |
| 705 "//build/config/sanitizers:deps", | 705 "//build/config/sanitizers:deps", |
| 706 "//build/win:default_exe_manifest", | 706 "//build/win:default_exe_manifest", |
| 707 ] | 707 ] |
| 708 } | 708 } |
| 709 } | 709 } |
| OLD | NEW |