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

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: temorarily reverted test files 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/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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "//mojo/edk/system", 61 "//mojo/edk/system",
62 "//net", 62 "//net",
63 "//services/shell/public/cpp", 63 "//services/shell/public/cpp",
64 "//services/shell/public/interfaces", 64 "//services/shell/public/interfaces",
65 "//services/shell/runner/common", 65 "//services/shell/runner/common",
66 "//skia", 66 "//skia",
67 "//storage/common", 67 "//storage/common",
68 "//third_party/WebKit/public:blink_headers", 68 "//third_party/WebKit/public:blink_headers",
69 "//third_party/WebKit/public:image_resources", 69 "//third_party/WebKit/public:image_resources",
70 "//third_party/WebKit/public:resources", 70 "//third_party/WebKit/public:resources",
71 "//third_party/icu", 71 "//third_party/ced",
72 "//ui/base", 72 "//ui/base",
73 "//ui/events/gestures/blink", 73 "//ui/events/gestures/blink",
74 "//ui/gfx", 74 "//ui/gfx",
75 "//ui/gfx/geometry", 75 "//ui/gfx/geometry",
76 "//ui/gl", 76 "//ui/gl",
77 "//ui/native_theme", 77 "//ui/native_theme",
78 "//url", 78 "//url",
79 "//v8", 79 "//v8",
80 ] 80 ]
81 81
(...skipping 28 matching lines...) Expand all
110 110
111 # See comment at the top of //content/BUILD.gn for how this works. 111 # See comment at the top of //content/BUILD.gn for how this works.
112 group("for_content_tests") { 112 group("for_content_tests") {
113 visibility = [ "//content/test/*" ] 113 visibility = [ "//content/test/*" ]
114 if (!is_component_build) { 114 if (!is_component_build) {
115 public_deps = [ 115 public_deps = [
116 ":child", 116 ":child",
117 ] 117 ]
118 } 118 }
119 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698