Chromium Code Reviews| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 48 'screen_aura.cc', | 48 'screen_aura.cc', |
| 49 'screen_aura.h', | 49 'screen_aura.h', |
| 50 'window.cc', | 50 'window.cc', |
| 51 'window.h', | 51 'window.h', |
| 52 'window_delegate.h', | 52 'window_delegate.h', |
| 53 'window_observer.h', | 53 'window_observer.h', |
| 54 'window_types.h', | 54 'window_types.h', |
| 55 ], | 55 ], |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'non_shell_test_support_aura', | |
|
Ben Goodger (Google)
2011/12/05 22:01:16
what does non-shell mean?
varunjain
2011/12/05 22:11:36
I know the name is weird.. the intention is that t
| |
| 59 'type': 'static_library', | |
| 60 'dependencies': [ | |
| 61 '../ui.gyp:ui', | |
| 62 'aura', | |
| 63 ], | |
| 64 'include_dirs': [ | |
| 65 '..', | |
| 66 ], | |
| 67 'sources': [ | |
| 68 'test/test_tooltip_client.cc', | |
| 69 ], | |
| 70 }, | |
| 71 { | |
| 58 'target_name': 'test_support_aura', | 72 'target_name': 'test_support_aura', |
| 59 'type': 'static_library', | 73 'type': 'static_library', |
| 60 'dependencies': [ | 74 'dependencies': [ |
| 61 '../../skia/skia.gyp:skia', | 75 '../../skia/skia.gyp:skia', |
| 62 '../../testing/gtest.gyp:gtest', | 76 '../../testing/gtest.gyp:gtest', |
| 63 '../gfx/compositor/compositor.gyp:test_compositor', | 77 '../gfx/compositor/compositor.gyp:test_compositor', |
| 64 '../ui.gyp:ui', | 78 '../ui.gyp:ui', |
| 65 'aura', | 79 'aura', |
| 66 ], | 80 ], |
| 67 'include_dirs': [ | 81 'include_dirs': [ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 141 'conditions': [ | 155 'conditions': [ |
| 142 ['OS=="linux"', { | 156 ['OS=="linux"', { |
| 143 'dependencies': [ | 157 'dependencies': [ |
| 144 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 158 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 145 ], | 159 ], |
| 146 }], | 160 }], |
| 147 ], | 161 ], |
| 148 }, | 162 }, |
| 149 ], | 163 ], |
| 150 } | 164 } |
| OLD | NEW |