Index: components/secure_display.gypi |
diff --git a/components/secure_display.gypi b/components/secure_display.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ded921133e4650a8176b145a96ad92e2e3552d6e |
--- /dev/null |
+++ b/components/secure_display.gypi |
@@ -0,0 +1,29 @@ |
+# 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. |
+ |
+{ |
+ 'targets': [ |
+ { |
+ # GN version: //components/secure_display |
+ 'target_name': 'secure_display', |
+ 'type': '<(component)', |
noyau (Ping after 24h)
2015/07/22 09:44:00
Most simple components are of type static_library,
Miguel Garcia
2015/07/22 12:33:06
I moved the gn file to be component as well to be
noyau (Ping after 24h)
2015/07/22 13:26:53
From Sylvain, himself quoting from brettw on chrom
|
+ 'dependencies': [ |
+ '../base/base.gyp:base', |
+ '../net/net.gyp:net', |
+ '../url/url.gyp:url_lib', |
+ '../ui/gfx/gfx.gyp:gfx', |
+ ], |
+ 'defines': [ |
+ 'SECURE_DISPLAY_IMPLEMENTATION', |
+ ], |
+ 'sources': [ |
+ # Note: file list duplicated in GN build. |
+ 'secure_display/elide_url.h', |
+ 'secure_display/elide_url.cc', |
+ 'secure_display/secure_display_export.h', |
+ ] |
+ } |
+ ] |
+} |
+ |