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

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

Issue 2875243002: RELAND: ShapeDetection: use mojom::Bitmap for mojo interface. (Closed)
Patch Set: RELAND2: ShapeDetection: use mojom::Bitmap for mojo interface. Created 3 years, 6 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//third_party/WebKit/Source/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 6
7 blink_modules_sources("shapedetection") { 7 blink_modules_sources("shapedetection") {
8 sources = [ 8 sources = [
9 "BarcodeDetector.cpp", 9 "BarcodeDetector.cpp",
10 "BarcodeDetector.h", 10 "BarcodeDetector.h",
11 "DetectedBarcode.cpp", 11 "DetectedBarcode.cpp",
12 "DetectedBarcode.h", 12 "DetectedBarcode.h",
13 "DetectedFace.cpp", 13 "DetectedFace.cpp",
14 "DetectedFace.h", 14 "DetectedFace.h",
15 "DetectedText.cpp", 15 "DetectedText.cpp",
16 "DetectedText.h", 16 "DetectedText.h",
17 "FaceDetector.cpp", 17 "FaceDetector.cpp",
18 "FaceDetector.h", 18 "FaceDetector.h",
19 "ShapeDetector.cpp", 19 "ShapeDetector.cpp",
20 "ShapeDetector.h", 20 "ShapeDetector.h",
21 "TextDetector.cpp", 21 "TextDetector.cpp",
22 "TextDetector.h", 22 "TextDetector.h",
23 ] 23 ]
24 24
25 public_deps = [ 25 public_deps = [
26 "//services/shape_detection/public/interfaces:interfaces_blink", 26 "//services/shape_detection/public/interfaces:interfaces_blink",
27 "//skia/public/interfaces:interfaces_blink",
27 ] 28 ]
28 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698