Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Side by Side Diff: content/browser/BUILD.gn

Issue 2113933003: Add mojo interface to load hyphenation dictionaries on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved to content/browser Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 ] 500 ]
501 } 501 }
502 502
503 if (enable_webvr) { 503 if (enable_webvr) {
504 deps += [ "//device/vr" ] 504 deps += [ "//device/vr" ]
505 } 505 }
506 506
507 if (enable_ipc_fuzzer) { 507 if (enable_ipc_fuzzer) {
508 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 508 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
509 } 509 }
510
511 if (use_minikin_hyphenation) {
512 deps += [ "//content/browser/hyphenation" ]
513 defines += [ "USE_MINIKIN_HYPHENATION=1" ]
514 }
510 } 515 }
511 516
512 # See comment at the top of //content/BUILD.gn for how this works. 517 # See comment at the top of //content/BUILD.gn for how this works.
513 group("for_content_tests") { 518 group("for_content_tests") {
514 visibility = [ "//content/test/*" ] 519 visibility = [ "//content/test/*" ]
515 if (!is_component_build) { 520 if (!is_component_build) {
516 public_deps = [ 521 public_deps = [
517 ":browser", 522 ":browser",
518 ] 523 ]
519 } else { 524 } else {
520 public_deps = [ 525 public_deps = [
521 "//third_party/leveldatabase", 526 "//third_party/leveldatabase",
522 ] 527 ]
523 } 528 }
524 } 529 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698