Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1109)

Side by Side Diff: ui/snapshot/snapshot.gyp

Issue 13926006: Add ui::GrabDesktopSnapshot for Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 {
(...skipping 20 matching lines...) Expand all
31 'include_dirs': [ 31 'include_dirs': [
32 '..', 32 '..',
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 ['use_aura==1', { 35 ['use_aura==1', {
36 'dependencies': [ 36 'dependencies': [
37 '../aura/aura.gyp:aura', 37 '../aura/aura.gyp:aura',
38 '../compositor/compositor.gyp:compositor', 38 '../compositor/compositor.gyp:compositor',
39 ], 39 ],
40 }], 40 }],
41 ['use_aura==1 and OS=="win"', {
42 'sources/': [
43 ['exclude', 'snapshot_win.cc'],
44 ],
45 }],
46 ], 41 ],
47 }, 42 },
48 { 43 {
49 'target_name': 'snapshot_unittests', 44 'target_name': 'snapshot_unittests',
50 'type': '<(gtest_target_type)', 45 'type': '<(gtest_target_type)',
51 'dependencies': [ 46 'dependencies': [
52 '../../skia/skia.gyp:skia', 47 '../../skia/skia.gyp:skia',
53 '../../base/base.gyp:base', 48 '../../base/base.gyp:base',
54 '../../testing/gtest.gyp:gtest', 49 '../../testing/gtest.gyp:gtest',
55 '../../testing/gmock.gyp:gmock', 50 '../../testing/gmock.gyp:gmock',
56 '../../testing/gtest.gyp:gtest', 51 '../../testing/gtest.gyp:gtest',
57 '../ui.gyp:ui', 52 '../ui.gyp:ui',
58 'snapshot' 53 'snapshot'
59 ], 54 ],
60 'sources': [ 55 'sources': [
61 'snapshot_mac_unittest.mm', 56 'snapshot_mac_unittest.mm',
62 ] 57 ]
63 }, 58 },
64 ], 59 ],
65 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698