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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 public_configs = [ ":skia_config" ] | 435 public_configs = [ ":skia_config" ] |
436 | 436 |
437 deps = [ | 437 deps = [ |
438 ":skia_opts", | 438 ":skia_opts", |
439 "//base", | 439 "//base", |
440 "//base/third_party/dynamic_annotations", | 440 "//base/third_party/dynamic_annotations", |
441 "//third_party/zlib", | 441 "//third_party/zlib", |
442 ] | 442 ] |
443 | 443 |
444 if (is_linux) { | 444 if (is_linux) { |
445 configs += [ "//build/config/linux:freetype2" ] | 445 deps += [ |
446 deps += [ "//third_party/icu:icuuc" ] | 446 "//third_party/freetype2", |
| 447 "//third_party/icu:icuuc", |
| 448 ] |
447 } | 449 } |
448 | 450 |
449 if (is_android) { | 451 if (is_android) { |
450 set_sources_assignment_filter([]) | 452 set_sources_assignment_filter([]) |
451 sources += [ "ext/platform_device_linux.cc" ] | 453 sources += [ "ext/platform_device_linux.cc" ] |
452 set_sources_assignment_filter(sources_assignment_filter) | 454 set_sources_assignment_filter(sources_assignment_filter) |
453 deps += [ | 455 deps += [ |
454 "//third_party/expat", | 456 "//third_party/expat", |
455 "//third_party/freetype-android:freetype", | 457 "//third_party/freetype-android:freetype", |
456 "//third_party/android_tools:cpu_features", | 458 "//third_party/android_tools:cpu_features", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 deps = [ | 541 deps = [ |
540 ":skia", | 542 ":skia", |
541 "//base", | 543 "//base", |
542 "//base/test:run_all_unittests", | 544 "//base/test:run_all_unittests", |
543 "//cc:test_support", # TODO: Fix this test to not depend on cc. | 545 "//cc:test_support", # TODO: Fix this test to not depend on cc. |
544 "//testing/gtest", | 546 "//testing/gtest", |
545 "//ui/gfx", | 547 "//ui/gfx", |
546 "//ui/gfx/geometry", | 548 "//ui/gfx/geometry", |
547 ] | 549 ] |
548 } | 550 } |
OLD | NEW |