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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 } | 510 } |
511 deps += [ "//third_party/icu:icuuc" ] | 511 deps += [ "//third_party/icu:icuuc" ] |
512 } | 512 } |
513 | 513 |
514 if (is_android) { | 514 if (is_android) { |
515 set_sources_assignment_filter([]) | 515 set_sources_assignment_filter([]) |
516 sources += [ "ext/platform_device_linux.cc" ] | 516 sources += [ "ext/platform_device_linux.cc" ] |
517 set_sources_assignment_filter(sources_assignment_filter) | 517 set_sources_assignment_filter(sources_assignment_filter) |
518 deps += [ | 518 deps += [ |
519 "//third_party/expat", | 519 "//third_party/expat", |
520 "//third_party/freetype", | 520 "//third_party/freetype-android:freetype", |
521 "//third_party/android_tools:cpu_features", | 521 "//third_party/android_tools:cpu_features", |
522 ] | 522 ] |
523 } | 523 } |
524 | 524 |
525 if (is_android && !is_debug) { | 525 if (is_android && !is_debug) { |
526 configs -= [ "//build/config/compiler:optimize" ] | 526 configs -= [ "//build/config/compiler:optimize" ] |
527 configs += [ "//build/config/compiler:optimize_max" ] | 527 configs += [ "//build/config/compiler:optimize_max" ] |
528 } | 528 } |
529 } | 529 } |
530 | 530 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 sources = [ | 648 sources = [ |
649 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 649 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
650 ] | 650 ] |
651 | 651 |
652 deps = [ | 652 deps = [ |
653 ":skia", | 653 ":skia", |
654 "//base", | 654 "//base", |
655 ] | 655 ] |
656 } | 656 } |
657 } | 657 } |
OLD | NEW |