OLD | NEW |
(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 |
OLD | NEW |