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

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

Issue 11399002: Implemented GetWindowSnapshot on RenderViewImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added stub methods for iOS Created 8 years 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
« no previous file with comments | « ui/snapshot/snapshot.h ('k') | ui/snapshot/snapshot_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'snapshot',
12 'type': '<(component)',
13 'dependencies': [
14 '../../skia/skia.gyp:skia',
15 '../../base/base.gyp:base',
16 '../ui.gyp:ui',
17 ],
18 'defines': [
19 'SNAPSHOT_IMPLEMENTATION',
20 ],
21 'sources': [
22 'snapshot.h',
23 'snapshot_android.cc',
24 'snapshot_aura.cc',
25 'snapshot_export.h',
26 'snapshot_gtk.cc',
27 'snapshot_ios.mm',
28 'snapshot_mac.mm',
29 'snapshot_win.cc',
30 ],
31 'include_dirs': [
32 '..',
33 ],
34 'conditions': [
35 ['use_aura==1', {
36 'dependencies': [
37 '../aura/aura.gyp:aura',
38 '../compositor/compositor.gyp:compositor',
39 ],
40 }],
41 ['use_aura==1 and OS=="win"', {
42 'sources/': [
43 ['exclude', 'snapshot_win.cc'],
44 ],
45 }],
46 ],
47 },
48 {
49 'target_name': 'snapshot_unittests',
50 'type': '<(gtest_target_type)',
51 'dependencies': [
52 '../../skia/skia.gyp:skia',
53 '../../base/base.gyp:base',
54 '../../testing/gtest.gyp:gtest',
55 '../../testing/gmock.gyp:gmock',
56 '../../testing/gtest.gyp:gtest',
57 '../ui.gyp:ui',
58 'snapshot'
59 ],
60 'sources': [
61 'snapshot_mac_unittest.mm',
62 ]
63 },
64 ],
65 }
OLDNEW
« no previous file with comments | « ui/snapshot/snapshot.h ('k') | ui/snapshot/snapshot_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698