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

Side by Side Diff: ui/secure_display/secure_display.gyp

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 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 # GN version: //ui/secure_display
12 'target_name': 'secure_display',
13 'type': '<(component)',
14 'dependencies': [
15 '../../base/base.gyp:base',
16 # '../../base:strings',
17 '../../net/net.gyp:net',
18 '../../url/url.gyp:url_lib',
19 '../gfx/gfx.gyp:gfx',
20 ],
21 'defines': [
22 'SECURE_DISPLAY_IMPLEMENTATION',
23 ],
24 'sources': [
25 # Note: file list duplicated in GN build.
26 'elide_url.h',
27 'elide_url.cc',
28 ]
29 },
30 {
31 # GN version: //ui/message_center:message_center_unittests
32 'target_name': 'secure_display_unittests',
33 'type': 'executable',
34 'dependencies': [
35 '../../base/base.gyp:base',
36 '../../base/base.gyp:test_support_base',
37 '../../testing/gtest.gyp:gtest',
38 'secure_display',
39 ],
40 'sources': [
41 'elide_url_unittest.cc',
42 'test/run_all_unittests.cc',
43 ]
44 }
45 ]
46 }
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698