OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 # GN: //ui/arc:arc | 11 # GN: //ui/arc:arc |
12 'target_name': 'arc', | 12 'target_name': 'arc', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'include_dirs': [ | 14 'include_dirs': [ |
15 '../..', | 15 '../..', |
16 ], | 16 ], |
17 'dependencies': [ | 17 'dependencies': [ |
18 '../gfx/gfx.gyp:gfx_geometry', | 18 '../gfx/gfx.gyp:gfx_geometry', |
19 '../message_center/message_center.gyp:message_center', | 19 '../message_center/message_center.gyp:message_center', |
20 '../../base/base.gyp:base', | 20 '../../base/base.gyp:base', |
21 '../../url/url.gyp:url_lib', | 21 '../../url/url.gyp:url_lib', |
22 '../../skia/skia.gyp:skia', | 22 '../../skia/skia.gyp:skia', |
23 '../../components/components.gyp:arc_mojo_bindings', | 23 '../../components/components.gyp:arc_mojo_bindings', |
24 '../../components/components.gyp:signin_core_account_id', | 24 '../../components/components.gyp:signin_core_account_id', |
25 ], | 25 ], |
26 'sources': [ | 26 'sources': [ |
| 27 'notification/arc_custom_notification_view.cc', |
| 28 'notification/arc_custom_notification_view.h', |
| 29 'notification/arc_custom_notification_item.cc', |
| 30 'notification/arc_custom_notification_item.h', |
| 31 'notification/arc_notification_item.cc', |
| 32 'notification/arc_notification_item.h', |
27 'notification/arc_notification_manager.cc', | 33 'notification/arc_notification_manager.cc', |
28 'notification/arc_notification_manager.h', | 34 'notification/arc_notification_manager.h', |
29 'notification/arc_notification_item.cc', | |
30 'notification/arc_notification_item.h', | |
31 ], | 35 ], |
32 }, | 36 }, |
33 { | 37 { |
34 # GN: //ui/arc:ui_arc_unittests | 38 # GN: //ui/arc:ui_arc_unittests |
35 'target_name': 'ui_arc_unittests', | 39 'target_name': 'ui_arc_unittests', |
36 'type': '<(gtest_target_type)', | 40 'type': '<(gtest_target_type)', |
37 'include_dirs': [ | 41 'include_dirs': [ |
38 '../..', | 42 '../..', |
39 ], | 43 ], |
40 'dependencies': [ | 44 'dependencies': [ |
41 '../../base/base.gyp:base', | 45 '../../base/base.gyp:base', |
42 '../../base/base.gyp:test_support_base', | 46 '../../base/base.gyp:test_support_base', |
43 '../../components/components.gyp:arc_test_support', | 47 '../../components/components.gyp:arc_test_support', |
44 '../../mojo/mojo_edk.gyp:mojo_system_impl', | 48 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
45 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 49 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
46 '../../testing/gtest.gyp:gtest', | 50 '../../testing/gtest.gyp:gtest', |
47 '../message_center/message_center.gyp:message_center_test_support', | 51 '../message_center/message_center.gyp:message_center_test_support', |
48 'arc', | 52 'arc', |
49 ], | 53 ], |
50 'sources': [ | 54 'sources': [ |
51 'notification/arc_notification_manager_unittest.cc', | 55 'notification/arc_notification_manager_unittest.cc', |
52 'test/run_all_unittests.cc', | 56 'test/run_all_unittests.cc', |
53 ], | 57 ], |
54 }, | 58 }, |
55 ], | 59 ], |
56 } | 60 } |
OLD | NEW |