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 '../gfx/gfx.gyp:gfx', | |
17 '../ui.gyp:ui', | 16 '../ui.gyp:ui', |
18 ], | 17 ], |
19 'defines': [ | 18 'defines': [ |
20 'SNAPSHOT_IMPLEMENTATION', | 19 'SNAPSHOT_IMPLEMENTATION', |
21 ], | 20 ], |
22 'sources': [ | 21 'sources': [ |
23 'snapshot.h', | 22 'snapshot.h', |
24 'snapshot_android.cc', | 23 'snapshot_android.cc', |
25 'snapshot_aura.cc', | 24 'snapshot_aura.cc', |
26 'snapshot_export.h', | 25 'snapshot_export.h', |
(...skipping 16 matching lines...) Expand all Loading... |
43 ], | 42 ], |
44 }, | 43 }, |
45 { | 44 { |
46 'target_name': 'snapshot_unittests', | 45 'target_name': 'snapshot_unittests', |
47 'type': '<(gtest_target_type)', | 46 'type': '<(gtest_target_type)', |
48 'dependencies': [ | 47 'dependencies': [ |
49 '../../skia/skia.gyp:skia', | 48 '../../skia/skia.gyp:skia', |
50 '../../base/base.gyp:base', | 49 '../../base/base.gyp:base', |
51 '../../base/base.gyp:test_support_base', | 50 '../../base/base.gyp:test_support_base', |
52 '../../testing/gtest.gyp:gtest', | 51 '../../testing/gtest.gyp:gtest', |
53 '../gfx/gfx.gyp:gfx', | |
54 '../ui.gyp:ui', | 52 '../ui.gyp:ui', |
55 'snapshot' | 53 'snapshot' |
56 ], | 54 ], |
57 'sources': [ | 55 'sources': [ |
58 'snapshot_aura_unittest.cc', | 56 'snapshot_aura_unittest.cc', |
59 'snapshot_mac_unittest.mm', | 57 'snapshot_mac_unittest.mm', |
60 'test/run_all_unittests.cc', | 58 'test/run_all_unittests.cc', |
61 ], | 59 ], |
62 'conditions': [ | 60 'conditions': [ |
63 ['use_aura==1', { | 61 ['use_aura==1', { |
(...skipping 27 matching lines...) Expand all Loading... |
91 'snapshot', | 89 'snapshot', |
92 ], | 90 ], |
93 'include_dirs': [ | 91 'include_dirs': [ |
94 '../..', | 92 '../..', |
95 ], | 93 ], |
96 }, | 94 }, |
97 ], | 95 ], |
98 }], | 96 }], |
99 ], | 97 ], |
100 } | 98 } |
OLD | NEW |