Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'athena_lib', | |
| 12 'type': '<(component)', | |
| 13 'dependencies': [ | |
| 14 '../ui/aura/aura.gyp:aura', | |
| 15 '../ui/views/views.gyp:views', | |
| 16 '../ui/accessibility/accessibility.gyp:ax_gen', | |
| 17 '../skia/skia.gyp:skia', | |
| 18 ], | |
| 19 'defines': [ | |
| 20 'ATHENA_IMPLEMENTATION', | |
| 21 ], | |
| 22 'sources': [ | |
| 23 # All .cc, .h under ash, except unittests | |
|
Ben Goodger (Google)
2014/05/16 20:16:47
athena :-)
oshima
2014/05/16 22:26:33
Done. :)
| |
| 24 'athena_export.h', | |
| 25 'screen/background_controller.h', | |
| 26 'screen/background_controller.cc', | |
| 27 'screen/public/screen_manager.h', | |
| 28 'screen/screen_manager_impl.cc', | |
| 29 'wm/public/window_manager.h', | |
| 30 'wm/window_manager_impl.cc', | |
| 31 ], | |
| 32 }, | |
| 33 ], | |
| 34 } | |
| 35 | |
| OLD | NEW |