OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 24 matching lines...) Expand all Loading... |
35 'public/view.h', | 35 'public/view.h', |
36 'public/view_observer.h', | 36 'public/view_observer.h', |
37 'public/window.h', | 37 'public/window.h', |
38 'src/event.cc', | 38 'src/event.cc', |
39 'src/event_dispatcher.cc', | 39 'src/event_dispatcher.cc', |
40 'src/event_processor.cc', | 40 'src/event_processor.cc', |
41 'src/layout.cc', | 41 'src/layout.cc', |
42 'src/paint_processor.cc', | 42 'src/paint_processor.cc', |
43 'src/view.cc', | 43 'src/view.cc', |
44 'src/view_observer.cc', | 44 'src/view_observer.cc', |
| 45 'src/view_private.cc', |
| 46 'src/view_private.h', |
45 'src/window.cc', | 47 'src/window.cc', |
46 ], | 48 ], |
47 }, | 49 }, |
48 { | 50 { |
49 'target_name': 'v2_unittests', | 51 'target_name': 'v2_unittests', |
50 'type': 'executable', | 52 'type': 'executable', |
51 'dependencies': [ | 53 'dependencies': [ |
52 '../../base/base.gyp:test_support_base', | 54 '../../base/base.gyp:test_support_base', |
53 '../../testing/gtest.gyp:gtest', | 55 '../../testing/gtest.gyp:gtest', |
| 56 '../gfx/gfx.gyp:gfx', |
54 'v2', | 57 'v2', |
55 ], | 58 ], |
56 'sources': [ | 59 'sources': [ |
57 'src/v2_unittests.cc', | 60 'src/v2_unittests.cc', |
58 'src/view_unittest.cc', | 61 'src/view_unittest.cc', |
59 ], | 62 ], |
60 }, | 63 }, |
61 ], | 64 ], |
62 } | 65 } |
OLD | NEW |