| 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 '../aura/aura.gyp:aura', | 18 '../aura/aura.gyp:aura', |
| 19 '../base/ui_base.gyp:ui_base', | 19 '../base/ui_base.gyp:ui_base', |
| 20 '../compositor/compositor.gyp:compositor', |
| 21 '../display/display.gyp:display', |
| 22 '../events/events.gyp:events', |
| 20 '../gfx/gfx.gyp:gfx_geometry', | 23 '../gfx/gfx.gyp:gfx_geometry', |
| 21 '../message_center/message_center.gyp:message_center', | 24 '../message_center/message_center.gyp:message_center', |
| 22 '../resources/ui_resources.gyp:ui_resources', | 25 '../resources/ui_resources.gyp:ui_resources', |
| 23 '../strings/ui_strings.gyp:ui_strings', | 26 '../strings/ui_strings.gyp:ui_strings', |
| 24 '../views/views.gyp:views', | 27 '../views/views.gyp:views', |
| 28 '../wm/wm.gyp:wm', |
| 25 '../../ash/ash.gyp:ash', | 29 '../../ash/ash.gyp:ash', |
| 26 '../../base/base.gyp:base', | 30 '../../base/base.gyp:base', |
| 27 '../../url/url.gyp:url_lib', | 31 '../../url/url.gyp:url_lib', |
| 28 '../../skia/skia.gyp:skia', | 32 '../../skia/skia.gyp:skia', |
| 29 '../../components/components.gyp:arc_base', | 33 '../../components/components.gyp:arc_base', |
| 30 '../../components/components.gyp:arc_bitmap', | 34 '../../components/components.gyp:arc_bitmap', |
| 31 '../../components/components.gyp:arc_mojo_bindings', | 35 '../../components/components.gyp:arc_mojo_bindings', |
| 32 '../../components/components.gyp:exo', | 36 '../../components/components.gyp:exo', |
| 33 '../../components/components.gyp:signin_core_account_id', | 37 '../../components/components.gyp:signin_core_account_id', |
| 34 ], | 38 ], |
| (...skipping 27 matching lines...) Expand all Loading... |
| 62 '../message_center/message_center.gyp:message_center_test_support', | 66 '../message_center/message_center.gyp:message_center_test_support', |
| 63 'arc', | 67 'arc', |
| 64 ], | 68 ], |
| 65 'sources': [ | 69 'sources': [ |
| 66 'notification/arc_notification_manager_unittest.cc', | 70 'notification/arc_notification_manager_unittest.cc', |
| 67 'test/run_all_unittests.cc', | 71 'test/run_all_unittests.cc', |
| 68 ], | 72 ], |
| 69 }, | 73 }, |
| 70 ], | 74 ], |
| 71 } | 75 } |
| OLD | NEW |