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

Side by Side Diff: ui/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: 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 component("secure_display") {
2 sources = [
3 "elide_url.cc",
4 "elide_url.h",
5 ]
6
7 deps = [
8 "//base",
9 "//base:strings",
10 "//net:base",
11 "//ui/gfx",
12 "//url",
13 ]
14
15 defines = [ "SECURE_DISPLAY_IMPLEMENTATION" ]
16 }
17
18 test("secure_display_unittests") {
19 sources = [
20 "secure_display_unittests",
21 "test/run_all_unittests.cc",
22 ]
23
24 deps = [
25 ":secure_display",
26 "//base/base.gyp:base",
27 "//base/base.gyp:test_support_base",
28 "//testing/gtest",
29 ]
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698