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

Side by Side Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 2528743002: Shape Detection: Implement FaceDetection on Mac as out-of-process service (Closed)
Patch Set: rockot@ comments Created 4 years 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/split_static_library.gni") 5 import("//build/split_static_library.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 "//third_party/WebKit/Source/modules/webgl", 155 "//third_party/WebKit/Source/modules/webgl",
156 "//third_party/WebKit/Source/modules/webmidi", 156 "//third_party/WebKit/Source/modules/webmidi",
157 "//third_party/WebKit/Source/modules/webshare", 157 "//third_party/WebKit/Source/modules/webshare",
158 "//third_party/WebKit/Source/modules/websockets", 158 "//third_party/WebKit/Source/modules/websockets",
159 "//third_party/WebKit/Source/modules/webusb", 159 "//third_party/WebKit/Source/modules/webusb",
160 "//third_party/icu", 160 "//third_party/icu",
161 "//third_party/sqlite", 161 "//third_party/sqlite",
162 "//third_party/zlib", 162 "//third_party/zlib",
163 ] 163 ]
164 164
165 public_deps = [
166 "//services/service_manager/public/cpp",
Ken Rockot(use gerrit already) 2016/12/05 22:15:22 Oops, missed this. Please remove this too, not all
xianglu 2016/12/08 01:20:54 Done.
167 "//services/shape_detection/public/interfaces",
168 ]
169
165 if (is_win) { 170 if (is_win) {
166 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits. 171 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits.
167 } 172 }
168 173
169 if (remove_webcore_debug_symbols) { 174 if (remove_webcore_debug_symbols) {
170 configs -= [ "//build/config/compiler:default_symbols" ] 175 configs -= [ "//build/config/compiler:default_symbols" ]
171 configs += [ "//build/config/compiler:no_symbols" ] 176 configs += [ "//build/config/compiler:no_symbols" ]
172 } 177 }
173 } 178 }
174 179
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 ":modules_testing", 303 ":modules_testing",
299 "//components/payments:payment_request_blink", 304 "//components/payments:payment_request_blink",
300 "//skia", 305 "//skia",
301 "//testing/gmock", 306 "//testing/gmock",
302 "//testing/gtest", 307 "//testing/gtest",
303 "//third_party/WebKit/Source/core", 308 "//third_party/WebKit/Source/core",
304 "//third_party/WebKit/Source/wtf", 309 "//third_party/WebKit/Source/wtf",
305 "//v8", 310 "//v8",
306 ] 311 ]
307 } 312 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698