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

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

Issue 2168003003: Replace ICU encoding detection with CED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments/add datafiles back Created 4 years, 4 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/child/child.gni") 7 import("//content/child/child.gni")
8 8
9 if (is_component_build) { 9 if (is_component_build) {
10 link_target_type = "source_set" 10 link_target_type = "source_set"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "//mojo/edk/system", 58 "//mojo/edk/system",
59 "//net", 59 "//net",
60 "//services/shell/public/cpp", 60 "//services/shell/public/cpp",
61 "//services/shell/public/interfaces", 61 "//services/shell/public/interfaces",
62 "//services/shell/runner/common", 62 "//services/shell/runner/common",
63 "//skia", 63 "//skia",
64 "//storage/common", 64 "//storage/common",
65 "//third_party/WebKit/public:blink_headers", 65 "//third_party/WebKit/public:blink_headers",
66 "//third_party/WebKit/public:image_resources", 66 "//third_party/WebKit/public:image_resources",
67 "//third_party/WebKit/public:resources", 67 "//third_party/WebKit/public:resources",
68 "//third_party/icu", 68 "//third_party/ced",
69 "//ui/base", 69 "//ui/base",
70 "//ui/events/gestures/blink", 70 "//ui/events/gestures/blink",
71 "//ui/gfx", 71 "//ui/gfx",
72 "//ui/gfx/geometry", 72 "//ui/gfx/geometry",
73 "//ui/gl", 73 "//ui/gl",
74 "//ui/native_theme", 74 "//ui/native_theme",
75 "//url", 75 "//url",
76 "//v8", 76 "//v8",
77 ] 77 ]
78 78
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 # See comment at the top of //content/BUILD.gn for how this works. 112 # See comment at the top of //content/BUILD.gn for how this works.
113 group("for_content_tests") { 113 group("for_content_tests") {
114 visibility = [ "//content/test/*" ] 114 visibility = [ "//content/test/*" ]
115 if (!is_component_build) { 115 if (!is_component_build) {
116 public_deps = [ 116 public_deps = [
117 ":child", 117 ":child",
118 ] 118 ]
119 } 119 }
120 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698