OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { |
(...skipping 11 matching lines...) Expand all Loading... |
22 'sources': [ | 22 'sources': [ |
23 'desktop_host.h', | 23 'desktop_host.h', |
24 'desktop_host_linux.cc', | 24 'desktop_host_linux.cc', |
25 'desktop_host_win.cc', | 25 'desktop_host_win.cc', |
26 'desktop_host_win.h', | 26 'desktop_host_win.h', |
27 'desktop.cc', | 27 'desktop.cc', |
28 'desktop.h', | 28 'desktop.h', |
29 'event.cc', | 29 'event.cc', |
30 'event.h', | 30 'event.h', |
31 'event_win.cc', | 31 'event_win.cc', |
| 32 'root_window.cc', |
| 33 'root_window.h', |
32 'window.cc', | 34 'window.cc', |
33 'window.h', | 35 'window.h', |
34 'window_delegate.h', | 36 'window_delegate.h', |
35 ], | 37 ], |
36 }, | 38 }, |
37 { | 39 { |
38 'target_name': 'aura_demo', | 40 'target_name': 'aura_demo', |
39 'type': 'executable', | 41 'type': 'executable', |
40 'dependencies': [ | 42 'dependencies': [ |
41 '../base/base.gyp:base', | 43 '../base/base.gyp:base', |
42 '../base/base.gyp:base_i18n', | 44 '../base/base.gyp:base_i18n', |
43 '../skia/skia.gyp:skia', | 45 '../skia/skia.gyp:skia', |
44 '../third_party/icu/icu.gyp:icui18n', | 46 '../third_party/icu/icu.gyp:icui18n', |
45 '../third_party/icu/icu.gyp:icuuc', | 47 '../third_party/icu/icu.gyp:icuuc', |
46 '../ui/gfx/compositor/compositor.gyp:compositor', | 48 '../ui/gfx/compositor/compositor.gyp:compositor', |
47 '../ui/ui.gyp:gfx_resources', | 49 '../ui/ui.gyp:gfx_resources', |
48 '../ui/ui.gyp:ui', | 50 '../ui/ui.gyp:ui', |
49 '../ui/ui.gyp:ui_resources', | 51 '../ui/ui.gyp:ui_resources', |
50 'aura', | 52 'aura', |
51 ], | 53 ], |
52 'include_dirs': [ | 54 'include_dirs': [ |
53 '..', | 55 '..', |
54 ], | 56 ], |
55 'sources': [ | 57 'sources': [ |
56 'demo/demo_main.cc', | 58 'demo/demo_main.cc', |
57 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 59 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
58 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 60 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
59 ], | 61 ], |
60 }, | 62 }, |
| 63 { |
| 64 'target_name': 'aura_unittests', |
| 65 'type': 'executable', |
| 66 'dependencies': [ |
| 67 '<(DEPTH)/base/base.gyp:test_support_base', |
| 68 '<(DEPTH)/skia/skia.gyp:skia', |
| 69 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 70 '<(DEPTH)/ui/ui.gyp:gfx_resources', |
| 71 '<(DEPTH)/ui/ui.gyp:ui', |
| 72 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 73 'aura', |
| 74 ], |
| 75 'include_dirs': [ |
| 76 '..', |
| 77 ], |
| 78 'sources': [ |
| 79 'window_unittest.cc', |
| 80 'run_all_unittests.cc', |
| 81 'test_suite.cc', |
| 82 'test_suite.h', |
| 83 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 84 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 85 ], |
| 86 }, |
61 ], | 87 ], |
62 } | 88 } |
OLD | NEW |