| 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 13 matching lines...) Expand all Loading... |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'desktop_host.h', | 26 'desktop_host.h', |
| 27 'desktop_host_linux.cc', | 27 'desktop_host_linux.cc', |
| 28 'desktop_host_win.cc', | 28 'desktop_host_win.cc', |
| 29 'desktop_host_win.h', | 29 'desktop_host_win.h', |
| 30 'desktop.cc', | 30 'desktop.cc', |
| 31 'desktop.h', | 31 'desktop.h', |
| 32 'event.cc', | 32 'event.cc', |
| 33 'event.h', | 33 'event.h', |
| 34 'event_filter.cc', |
| 35 'event_filter.h', |
| 34 'event_win.cc', | 36 'event_win.cc', |
| 35 'event_x.cc', | 37 'event_x.cc', |
| 36 'focus_manager.cc', | 38 'focus_manager.cc', |
| 37 'focus_manager.h', | 39 'focus_manager.h', |
| 38 'hit_test.h', | 40 'hit_test.h', |
| 39 'layout_manager.h', | 41 'layout_manager.h', |
| 40 'root_window.cc', | 42 'root_window.cc', |
| 41 'root_window.h', | 43 'root_window.h', |
| 44 'toplevel_window_container.cc', |
| 45 'toplevel_window_container.h', |
| 46 'toplevel_window_event_filter.cc', |
| 47 'toplevel_window_event_filter.h', |
| 42 'window.cc', | 48 'window.cc', |
| 43 'window.h', | 49 'window.h', |
| 44 'window_delegate.h', | 50 'window_delegate.h', |
| 45 'window_manager.cc', | |
| 46 'window_manager.h', | |
| 47 ], | 51 ], |
| 48 }, | 52 }, |
| 49 { | 53 { |
| 50 'target_name': 'aura_demo', | 54 'target_name': 'aura_demo', |
| 51 'type': 'executable', | 55 'type': 'executable', |
| 52 'dependencies': [ | 56 'dependencies': [ |
| 53 '../../base/base.gyp:base', | 57 '../../base/base.gyp:base', |
| 54 '../../base/base.gyp:base_i18n', | 58 '../../base/base.gyp:base_i18n', |
| 55 '../../skia/skia.gyp:skia', | 59 '../../skia/skia.gyp:skia', |
| 56 '../../third_party/icu/icu.gyp:icui18n', | 60 '../../third_party/icu/icu.gyp:icui18n', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'window_unittest.cc', | 94 'window_unittest.cc', |
| 91 'run_all_unittests.cc', | 95 'run_all_unittests.cc', |
| 92 'test_suite.cc', | 96 'test_suite.cc', |
| 93 'test_suite.h', | 97 'test_suite.h', |
| 94 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 98 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 95 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 99 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 96 ], | 100 ], |
| 97 }, | 101 }, |
| 98 ], | 102 ], |
| 99 } | 103 } |
| OLD | NEW |