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 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 26 matching lines...) Expand all Loading... |
37 'compositor.cc', | 37 'compositor.cc', |
38 'compositor.h', | 38 'compositor.h', |
39 'compositor_export.h', | 39 'compositor_export.h', |
40 'compositor_gl.cc', | 40 'compositor_gl.cc', |
41 'compositor_gl.h', | 41 'compositor_gl.h', |
42 'compositor_win.cc', | 42 'compositor_win.cc', |
43 'layer.cc', | 43 'layer.cc', |
44 'layer.h', | 44 'layer.h', |
45 'layer_animator.cc', | 45 'layer_animator.cc', |
46 'layer_animator.h', | 46 'layer_animator.h', |
| 47 'layer_observer.h', |
47 ], | 48 ], |
48 'conditions': [ | 49 'conditions': [ |
49 ['os_posix == 1 and OS != "mac"', { | 50 ['os_posix == 1 and OS != "mac"', { |
50 'sources!': [ | 51 'sources!': [ |
51 'compositor.cc', | 52 'compositor.cc', |
52 ], | 53 ], |
53 }], | 54 }], |
54 ['OS == "win" and views_compositor == 1', { | 55 ['OS == "win" and views_compositor == 1', { |
55 'sources!': [ | 56 'sources!': [ |
56 'compositor.cc', | 57 'compositor.cc', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 'test_compositor_host_win.cc', | 99 'test_compositor_host_win.cc', |
99 'test_suite.cc', | 100 'test_suite.cc', |
100 'test_suite.h', | 101 'test_suite.h', |
101 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 102 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
102 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 103 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
103 ], | 104 ], |
104 }, | 105 }, |
105 | 106 |
106 ], | 107 ], |
107 } | 108 } |
OLD | NEW |