| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 # GN: //ui/arc:arc | |
| 12 'target_name': 'arc', | |
| 13 'type': 'static_library', | |
| 14 'include_dirs': [ | |
| 15 '../..', | |
| 16 ], | |
| 17 'dependencies': [ | |
| 18 '../aura/aura.gyp:aura', | |
| 19 '../base/ui_base.gyp:ui_base', | |
| 20 '../compositor/compositor.gyp:compositor', | |
| 21 '../display/display.gyp:display', | |
| 22 '../events/events.gyp:events', | |
| 23 '../gfx/gfx.gyp:gfx_geometry', | |
| 24 '../message_center/message_center.gyp:message_center', | |
| 25 '../resources/ui_resources.gyp:ui_resources', | |
| 26 '../strings/ui_strings.gyp:ui_strings', | |
| 27 '../views/views.gyp:views', | |
| 28 '../wm/wm.gyp:wm', | |
| 29 '../../ash/ash.gyp:ash', | |
| 30 '../../base/base.gyp:base', | |
| 31 '../../url/url.gyp:url_lib', | |
| 32 '../../skia/skia.gyp:skia', | |
| 33 '../../components/components.gyp:arc_base', | |
| 34 '../../components/components.gyp:arc_bitmap', | |
| 35 '../../components/components.gyp:arc_mojo_bindings', | |
| 36 '../../components/components.gyp:exo', | |
| 37 '../../components/components.gyp:signin_core_account_id', | |
| 38 ], | |
| 39 'sources': [ | |
| 40 'notification/arc_custom_notification_view.cc', | |
| 41 'notification/arc_custom_notification_view.h', | |
| 42 'notification/arc_custom_notification_item.cc', | |
| 43 'notification/arc_custom_notification_item.h', | |
| 44 'notification/arc_notification_item.cc', | |
| 45 'notification/arc_notification_item.h', | |
| 46 'notification/arc_notification_manager.cc', | |
| 47 'notification/arc_notification_manager.h', | |
| 48 'notification/arc_notification_surface_manager.cc', | |
| 49 'notification/arc_notification_surface_manager.h', | |
| 50 ], | |
| 51 }, | |
| 52 { | |
| 53 # GN: //ui/arc:ui_arc_unittests | |
| 54 'target_name': 'ui_arc_unittests', | |
| 55 'type': '<(gtest_target_type)', | |
| 56 'include_dirs': [ | |
| 57 '../..', | |
| 58 ], | |
| 59 'dependencies': [ | |
| 60 '../../base/base.gyp:base', | |
| 61 '../../base/base.gyp:test_support_base', | |
| 62 '../../components/components.gyp:arc_test_support', | |
| 63 '../../mojo/mojo_edk.gyp:mojo_system_impl', | |
| 64 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 65 '../../testing/gtest.gyp:gtest', | |
| 66 '../message_center/message_center.gyp:message_center_test_support', | |
| 67 'arc', | |
| 68 ], | |
| 69 'sources': [ | |
| 70 'notification/arc_notification_manager_unittest.cc', | |
| 71 'test/run_all_unittests.cc', | |
| 72 ], | |
| 73 }, | |
| 74 ], | |
| 75 } | |
| OLD | NEW |