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 '../base/ui_base.gyp:ui_base', |
18 '../gfx/gfx.gyp:gfx_geometry', | 19 '../gfx/gfx.gyp:gfx_geometry', |
19 '../message_center/message_center.gyp:message_center', | 20 '../message_center/message_center.gyp:message_center', |
| 21 '../resources/ui_resources.gyp:ui_resources', |
| 22 '../strings/ui_strings.gyp:ui_strings', |
| 23 '../views/views.gyp:views', |
| 24 '../../ash/ash.gyp:ash', |
20 '../../base/base.gyp:base', | 25 '../../base/base.gyp:base', |
21 '../../url/url.gyp:url_lib', | 26 '../../url/url.gyp:url_lib', |
22 '../../skia/skia.gyp:skia', | 27 '../../skia/skia.gyp:skia', |
| 28 '../../components/components.gyp:arc_base', |
| 29 '../../components/components.gyp:arc_bitmap', |
23 '../../components/components.gyp:arc_mojo_bindings', | 30 '../../components/components.gyp:arc_mojo_bindings', |
| 31 '../../components/components.gyp:exo', |
24 '../../components/components.gyp:signin_core_account_id', | 32 '../../components/components.gyp:signin_core_account_id', |
25 ], | 33 ], |
26 'sources': [ | 34 'sources': [ |
27 'notification/arc_custom_notification_view.cc', | 35 'notification/arc_custom_notification_view.cc', |
28 'notification/arc_custom_notification_view.h', | 36 'notification/arc_custom_notification_view.h', |
29 'notification/arc_custom_notification_item.cc', | 37 'notification/arc_custom_notification_item.cc', |
30 'notification/arc_custom_notification_item.h', | 38 'notification/arc_custom_notification_item.h', |
31 'notification/arc_notification_item.cc', | 39 'notification/arc_notification_item.cc', |
32 'notification/arc_notification_item.h', | 40 'notification/arc_notification_item.h', |
33 'notification/arc_notification_manager.cc', | 41 'notification/arc_notification_manager.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
53 '../message_center/message_center.gyp:message_center_test_support', | 61 '../message_center/message_center.gyp:message_center_test_support', |
54 'arc', | 62 'arc', |
55 ], | 63 ], |
56 'sources': [ | 64 'sources': [ |
57 'notification/arc_notification_manager_unittest.cc', | 65 'notification/arc_notification_manager_unittest.cc', |
58 'test/run_all_unittests.cc', | 66 'test/run_all_unittests.cc', |
59 ], | 67 ], |
60 }, | 68 }, |
61 ], | 69 ], |
62 } | 70 } |
OLD | NEW |