OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { |
11 'target_name': 'snapshot', | 11 'target_name': 'snapshot', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../skia/skia.gyp:skia', | 14 '../../skia/skia.gyp:skia', |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../events/events.gyp:events', | |
17 '../gfx/gfx.gyp:gfx', | 16 '../gfx/gfx.gyp:gfx', |
18 '../ui.gyp:ui', | 17 '../ui.gyp:ui', |
19 ], | 18 ], |
20 'defines': [ | 19 'defines': [ |
21 'SNAPSHOT_IMPLEMENTATION', | 20 'SNAPSHOT_IMPLEMENTATION', |
22 ], | 21 ], |
23 'sources': [ | 22 'sources': [ |
24 'snapshot.h', | 23 'snapshot.h', |
25 'snapshot_android.cc', | 24 'snapshot_android.cc', |
26 'snapshot_aura.cc', | 25 'snapshot_aura.cc', |
(...skipping 17 matching lines...) Expand all Loading... |
44 ], | 43 ], |
45 }, | 44 }, |
46 { | 45 { |
47 'target_name': 'snapshot_unittests', | 46 'target_name': 'snapshot_unittests', |
48 'type': '<(gtest_target_type)', | 47 'type': '<(gtest_target_type)', |
49 'dependencies': [ | 48 'dependencies': [ |
50 '../../skia/skia.gyp:skia', | 49 '../../skia/skia.gyp:skia', |
51 '../../base/base.gyp:base', | 50 '../../base/base.gyp:base', |
52 '../../base/base.gyp:test_support_base', | 51 '../../base/base.gyp:test_support_base', |
53 '../../testing/gtest.gyp:gtest', | 52 '../../testing/gtest.gyp:gtest', |
54 '../events/events.gyp:events', | |
55 '../gfx/gfx.gyp:gfx', | 53 '../gfx/gfx.gyp:gfx', |
56 '../ui.gyp:ui', | 54 '../ui.gyp:ui', |
57 'snapshot' | 55 'snapshot' |
58 ], | 56 ], |
59 'sources': [ | 57 'sources': [ |
60 'snapshot_aura_unittest.cc', | 58 'snapshot_aura_unittest.cc', |
61 'snapshot_mac_unittest.mm', | 59 'snapshot_mac_unittest.mm', |
62 'test/run_all_unittests.cc', | 60 'test/run_all_unittests.cc', |
63 ], | 61 ], |
64 'conditions': [ | 62 'conditions': [ |
(...skipping 28 matching lines...) Expand all Loading... |
93 'snapshot', | 91 'snapshot', |
94 ], | 92 ], |
95 'include_dirs': [ | 93 'include_dirs': [ |
96 '../..', | 94 '../..', |
97 ], | 95 ], |
98 }, | 96 }, |
99 ], | 97 ], |
100 }], | 98 }], |
101 ], | 99 ], |
102 } | 100 } |
OLD | NEW |