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

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: dcheng review 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
« no previous file with comments | « build/config/features.gni ('k') | content/browser/hyphenation/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 sources += [
513 "hyphenation/hyphenation_impl.cc",
514 "hyphenation/hyphenation_impl.h",
515 ]
516 defines += [ "USE_MINIKIN_HYPHENATION=1" ]
517 }
510 } 518 }
511 519
512 # See comment at the top of //content/BUILD.gn for how this works. 520 # See comment at the top of //content/BUILD.gn for how this works.
513 group("for_content_tests") { 521 group("for_content_tests") {
514 visibility = [ "//content/test/*" ] 522 visibility = [ "//content/test/*" ]
515 if (!is_component_build) { 523 if (!is_component_build) {
516 public_deps = [ 524 public_deps = [
517 ":browser", 525 ":browser",
518 ] 526 ]
519 } else { 527 } else {
520 public_deps = [ 528 public_deps = [
521 "//third_party/leveldatabase", 529 "//third_party/leveldatabase",
522 ] 530 ]
523 } 531 }
524 } 532 }
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | content/browser/hyphenation/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698