OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 | 9 |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'oak', | 12 'target_name': 'oak', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../base/base.gyp:base_i18n', | 16 '../../base/base.gyp:base_i18n', |
17 '../../skia/skia.gyp:skia', | 17 '../../skia/skia.gyp:skia', |
18 '../../url/url.gyp:url_lib', | 18 '../../url/url.gyp:url_lib', |
19 '../aura/aura.gyp:aura', | 19 '../aura/aura.gyp:aura', |
20 '../compositor/compositor.gyp:compositor', | 20 '../compositor/compositor.gyp:compositor', |
21 '../gfx/gfx.gyp:gfx', | |
22 '../ui.gyp:ui', | 21 '../ui.gyp:ui', |
23 '../ui.gyp:ui_resources', | 22 '../ui.gyp:ui_resources', |
24 '../views/views.gyp:views', | 23 '../views/views.gyp:views', |
25 ], | 24 ], |
26 'defines': [ | 25 'defines': [ |
27 'OAK_IMPLEMENTATION', | 26 'OAK_IMPLEMENTATION', |
28 ], | 27 ], |
29 'sources': [ | 28 'sources': [ |
30 # All .cc, .h under oak, except unittests | 29 # All .cc, .h under oak, except unittests |
31 'oak.h', | 30 'oak.h', |
32 'oak_aura_window_display.cc', | 31 'oak_aura_window_display.cc', |
33 'oak_aura_window_display.h', | 32 'oak_aura_window_display.h', |
34 'oak_export.h', | 33 'oak_export.h', |
35 'oak_pretty_print.cc', | 34 'oak_pretty_print.cc', |
36 'oak_pretty_print.h', | 35 'oak_pretty_print.h', |
37 'oak_tree_model.cc', | 36 'oak_tree_model.cc', |
38 'oak_tree_model.h', | 37 'oak_tree_model.h', |
39 'oak_window.cc', | 38 'oak_window.cc', |
40 'oak_window.h', | 39 'oak_window.h', |
41 'oak_details_model.h', | 40 'oak_details_model.h', |
42 ], | 41 ], |
43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
44 'msvs_disabled_warnings': [ 4267, ], | 43 'msvs_disabled_warnings': [ 4267, ], |
45 }, | 44 }, |
46 ], | 45 ], |
47 } | 46 } |
OLD | NEW |