| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 '../ui.gyp:ui', | 90 '../ui.gyp:ui', |
| 91 '../ui.gyp:ui_resources', | 91 '../ui.gyp:ui_resources', |
| 92 'aura', | 92 'aura', |
| 93 ], | 93 ], |
| 94 'include_dirs': [ | 94 'include_dirs': [ |
| 95 '..', | 95 '..', |
| 96 ], | 96 ], |
| 97 'sources': [ | 97 'sources': [ |
| 98 'test/aura_test_base.cc', | 98 'test/aura_test_base.cc', |
| 99 'test/aura_test_base.h', | 99 'test/aura_test_base.h', |
| 100 'test/event_generator.cc', |
| 101 'test/event_generator.h', |
| 100 'test/run_all_unittests.cc', | 102 'test/run_all_unittests.cc', |
| 101 'test/test_desktop_delegate.cc', | 103 'test/test_desktop_delegate.cc', |
| 102 'test/test_desktop_delegate.h', | 104 'test/test_desktop_delegate.h', |
| 103 'test/test_suite.cc', | 105 'test/test_suite.cc', |
| 104 'test/test_suite.h', | 106 'test/test_suite.h', |
| 105 'test/test_window_delegate.cc', | 107 'test/test_window_delegate.cc', |
| 106 'test/test_window_delegate.h', | 108 'test/test_window_delegate.h', |
| 107 'toplevel_window_event_filter_unittest.cc', | 109 'toplevel_window_event_filter_unittest.cc', |
| 108 'window_unittest.cc', | 110 'window_unittest.cc', |
| 109 '../gfx/compositor/test_compositor.cc', | 111 '../gfx/compositor/test_compositor.cc', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 122 }], | 124 }], |
| 123 ['OS!="mac"', { | 125 ['OS!="mac"', { |
| 124 'dependencies': [ | 126 'dependencies': [ |
| 125 '../../chrome/chrome.gyp:packed_resources', | 127 '../../chrome/chrome.gyp:packed_resources', |
| 126 ], | 128 ], |
| 127 }], | 129 }], |
| 128 ], | 130 ], |
| 129 }, | 131 }, |
| 130 ], | 132 ], |
| 131 } | 133 } |
| OLD | NEW |