OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 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 |
| 10 'targets': [ |
| 11 { |
| 12 'target_name': 'oak', |
| 13 'type': 'static_library', |
| 14 'dependencies': [ |
| 15 '../../base/base.gyp:base', |
| 16 '../../base/base.gyp:base_i18n', |
| 17 '../../build/temp_gyp/googleurl.gyp:googleurl', |
| 18 '../../skia/skia.gyp:skia', |
| 19 '../aura/aura.gyp:aura', |
| 20 '../gfx/compositor/compositor.gyp:compositor', |
| 21 '../ui.gyp:ui', |
| 22 '../ui.gyp:ui_resources', |
| 23 '../ui.gyp:ui_resources_standard', |
| 24 '../views/views.gyp:views', |
| 25 ], |
| 26 'defines': [ |
| 27 'OAK_IMPLEMENTATION', |
| 28 ], |
| 29 'sources': [ |
| 30 # All .cc, .h under ash, except unittests |
| 31 'oak.h', |
| 32 'oak_aura_window_display.cc', |
| 33 'oak_aura_window_display.h', |
| 34 'oak_export.h', |
| 35 'oak_layer_display.cc', |
| 36 'oak_layer_display.h', |
| 37 'oak_tree_model.cc', |
| 38 'oak_tree_model.h', |
| 39 'oak_views_view_display.cc', |
| 40 'oak_views_view_display.cc', |
| 41 'oak_views_widget_display.cc', |
| 42 'oak_views_widget_display.h', |
| 43 'oak_window.cc', |
| 44 'oak_window.h', |
| 45 ], |
| 46 }, |
| 47 ], |
| 48 } |
OLD | NEW |