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

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

Issue 281003002: Make ui::Snapshot asynchronous on Android, remove CompositeAndReadback. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pixeltests: betterexpectations Created 6 years, 7 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 {
11 'target_name': 'snapshot', 11 'target_name': 'snapshot',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base',
15 '../../cc/cc.gyp:cc',
16 '../../gpu/gpu.gyp:command_buffer_common',
14 '../../skia/skia.gyp:skia', 17 '../../skia/skia.gyp:skia',
15 '../../base/base.gyp:base',
16 '../base/ui_base.gyp:ui_base', 18 '../base/ui_base.gyp:ui_base',
17 '../gfx/gfx.gyp:gfx', 19 '../gfx/gfx.gyp:gfx',
18 '../gfx/gfx.gyp:gfx_geometry', 20 '../gfx/gfx.gyp:gfx_geometry',
19 ], 21 ],
20 'defines': [ 22 'defines': [
21 'SNAPSHOT_IMPLEMENTATION', 23 'SNAPSHOT_IMPLEMENTATION',
22 ], 24 ],
23 'sources': [ 25 'sources': [
24 'snapshot.h', 26 'snapshot.h',
25 'snapshot_android.cc', 27 'snapshot_android.cc',
28 'snapshot_async.cc',
29 'snapshot_async.h',
26 'snapshot_aura.cc', 30 'snapshot_aura.cc',
27 'snapshot_export.h', 31 'snapshot_export.h',
28 'snapshot_ios.mm', 32 'snapshot_ios.mm',
29 'snapshot_mac.mm', 33 'snapshot_mac.mm',
30 'snapshot_win.cc', 34 'snapshot_win.cc',
31 'snapshot_win.h', 35 'snapshot_win.h',
32 ], 36 ],
33 'include_dirs': [ 37 'include_dirs': [
34 '..', 38 '..',
35 ], 39 ],
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'snapshot', 98 'snapshot',
95 ], 99 ],
96 'include_dirs': [ 100 'include_dirs': [
97 '../..', 101 '../..',
98 ], 102 ],
99 }, 103 },
100 ], 104 ],
101 }], 105 }],
102 ], 106 ],
103 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698