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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: ui/secure_display/secure_display.gyp
diff --git a/ui/secure_display/secure_display.gyp b/ui/secure_display/secure_display.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..c3715ce935a199fe475926feab2bc8b5437bc047
--- /dev/null
+++ b/ui/secure_display/secure_display.gyp
@@ -0,0 +1,47 @@
+# Copyright (c) 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ # GN version: //ui/secure_display
+ 'target_name': 'secure_display',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ # '../../base:strings',
+ '../../net/net.gyp:net',
+ '../../url/url.gyp:url_lib',
+ '../gfx/gfx.gyp:gfx',
+ ],
+ 'defines': [
+ 'SECURE_DISPLAY_IMPLEMENTATION',
+ ],
+ 'sources': [
+ # Note: file list duplicated in GN build.
+ 'elide_url.h',
+ 'elide_url.cc',
+ ]
+ },
+ {
+ # GN version: //ui/message_center:message_center_unittests
+ 'target_name': 'secure_display_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:test_support_base',
+ '../../testing/gtest.gyp:gtest',
+ 'secure_display',
+ ],
+ 'sources': [
+ 'elide_url_unittest.cc',
+ 'test/run_all_unittests.cc',
+ ]
+ }
+ ]
+}
+

Powered by Google App Engine
This is Rietveld 408576698