| 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 '../base/ui_base.gyp:ui_base', | 19 '../base/ui_base.gyp:ui_base', |
| 19 '../gfx/gfx.gyp:gfx_geometry', | 20 '../gfx/gfx.gyp:gfx_geometry', |
| 20 '../message_center/message_center.gyp:message_center', | 21 '../message_center/message_center.gyp:message_center', |
| 21 '../resources/ui_resources.gyp:ui_resources', | 22 '../resources/ui_resources.gyp:ui_resources', |
| 22 '../strings/ui_strings.gyp:ui_strings', | 23 '../strings/ui_strings.gyp:ui_strings', |
| 23 '../views/views.gyp:views', | 24 '../views/views.gyp:views', |
| 24 '../../ash/ash.gyp:ash', | 25 '../../ash/ash.gyp:ash', |
| 25 '../../base/base.gyp:base', | 26 '../../base/base.gyp:base', |
| 26 '../../url/url.gyp:url_lib', | 27 '../../url/url.gyp:url_lib', |
| 27 '../../skia/skia.gyp:skia', | 28 '../../skia/skia.gyp:skia', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 '../message_center/message_center.gyp:message_center_test_support', | 62 '../message_center/message_center.gyp:message_center_test_support', |
| 62 'arc', | 63 'arc', |
| 63 ], | 64 ], |
| 64 'sources': [ | 65 'sources': [ |
| 65 'notification/arc_notification_manager_unittest.cc', | 66 'notification/arc_notification_manager_unittest.cc', |
| 66 'test/run_all_unittests.cc', | 67 'test/run_all_unittests.cc', |
| 67 ], | 68 ], |
| 68 }, | 69 }, |
| 69 ], | 70 ], |
| 70 } | 71 } |
| OLD | NEW |