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

Side by Side Diff: components/secure_display/BUILD.gn

Issue 1233313005: Move elide_url to its own component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to static library Created 5 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
(Empty)
1 import("//testing/test.gni")
2
3 source_set("secure_display") {
4 sources = [
5 "elide_url.cc",
6 "elide_url.h",
7 ]
8
9 deps = [
10 "//base:base",
11 "//net:net",
12 "//ui/gfx",
13 "//url",
14 ]
15 }
16
17 source_set("unit_tests") {
18 testonly = true
19 sources = [
20 "elide_url_unittest.cc",
21 ]
22
23 deps = [
24 ":secure_display",
25 "//base:base",
26 "//base/test:test_support",
27 "//testing/gtest",
28 ]
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698