| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'target_name': 'athena_lib', | 11 'target_name': 'athena_lib', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 # status_icon_container_view.cc depends on this. Remove this once there | 14 # status_icon_container_view.cc depends on this. Remove this once there |
| 15 # are athena specific assets. | 15 # are athena specific assets. |
| 16 '../ash/ash_resources.gyp:ash_resources', | 16 '../ash/ash_resources.gyp:ash_resources', |
| 17 '../base/base.gyp:test_support_base', | 17 '../base/base.gyp:test_support_base', |
| 18 '../chromeos/chromeos.gyp:power_manager_proto', | 18 '../chromeos/chromeos.gyp:power_manager_proto', |
| 19 '../extensions/shell/app_shell.gyp:app_shell_version_header', | 19 '../extensions/shell/app_shell.gyp:app_shell_version_header', |
| 20 '../ipc/ipc.gyp:ipc', | 20 '../ipc/ipc.gyp:ipc', |
| 21 '../skia/skia.gyp:skia', | 21 '../skia/skia.gyp:skia', |
| 22 '../ui/accessibility/accessibility.gyp:ax_gen', | 22 '../ui/accessibility/accessibility.gyp:ax_gen', |
| 23 '../ui/app_list/app_list.gyp:app_list', | 23 '../ui/app_list/app_list.gyp:app_list', |
| 24 '../ui/aura/aura.gyp:aura', | 24 '../ui/aura/aura.gyp:aura', |
| 25 '../ui/aura/aura.gyp:aura_test_support', | 25 '../ui/aura/aura.gyp:aura_test_support', |
| 26 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos', |
| 26 '../ui/display/display.gyp:display', | 27 '../ui/display/display.gyp:display', |
| 27 '../ui/events/events.gyp:events_base', | 28 '../ui/events/events.gyp:events_base', |
| 28 '../ui/strings/ui_strings.gyp:ui_strings', | 29 '../ui/strings/ui_strings.gyp:ui_strings', |
| 29 '../ui/views/views.gyp:views', | 30 '../ui/views/views.gyp:views', |
| 30 'resources/athena_resources.gyp:athena_resources', | 31 'resources/athena_resources.gyp:athena_resources', |
| 31 ], | 32 ], |
| 32 'defines': [ | 33 'defines': [ |
| 33 'ATHENA_IMPLEMENTATION', | 34 'ATHENA_IMPLEMENTATION', |
| 34 ], | 35 ], |
| 35 'sources': [ | 36 'sources': [ |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'screen/screen_manager_unittest.cc', | 253 'screen/screen_manager_unittest.cc', |
| 253 'test/athena_unittests.cc', | 254 'test/athena_unittests.cc', |
| 254 'wm/split_view_controller_unittest.cc', | 255 'wm/split_view_controller_unittest.cc', |
| 255 'wm/window_list_provider_impl_unittest.cc', | 256 'wm/window_list_provider_impl_unittest.cc', |
| 256 'wm/window_manager_unittest.cc', | 257 'wm/window_manager_unittest.cc', |
| 257 ], | 258 ], |
| 258 } | 259 } |
| 259 ], | 260 ], |
| 260 } | 261 } |
| 261 | 262 |
| OLD | NEW |