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

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

Issue 706013004: Move non-browser specific ScreenshotTaker code to ui/snapshot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missing comma. Created 6 years, 1 month 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
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', 14 '../../base/base.gyp:base',
15 '../../skia/skia.gyp:skia', 15 '../../skia/skia.gyp:skia',
16 '../base/ui_base.gyp:ui_base', 16 '../base/ui_base.gyp:ui_base',
17 '../gfx/gfx.gyp:gfx', 17 '../gfx/gfx.gyp:gfx',
18 '../gfx/gfx.gyp:gfx_geometry', 18 '../gfx/gfx.gyp:gfx_geometry',
19 ], 19 ],
20 'defines': [ 20 'defines': [
21 'SNAPSHOT_IMPLEMENTATION', 21 'SNAPSHOT_IMPLEMENTATION',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'screenshot_taker.cc',
25 'screenshot_taker.h',
24 'snapshot.h', 26 'snapshot.h',
25 'snapshot_android.cc', 27 'snapshot_android.cc',
26 'snapshot_async.cc', 28 'snapshot_async.cc',
27 'snapshot_async.h', 29 'snapshot_async.h',
28 'snapshot_aura.cc', 30 'snapshot_aura.cc',
29 'snapshot_export.h', 31 'snapshot_export.h',
30 'snapshot_ios.mm', 32 'snapshot_ios.mm',
31 'snapshot_mac.mm', 33 'snapshot_mac.mm',
32 ], 34 ],
33 'include_dirs': [ 35 'include_dirs': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 # See http://crbug.com/162998#c4 for why this is needed. 87 # See http://crbug.com/162998#c4 for why this is needed.
86 ['OS=="linux" and use_allocator!="none"', { 88 ['OS=="linux" and use_allocator!="none"', {
87 'dependencies': [ 89 'dependencies': [
88 '../../base/allocator/allocator.gyp:allocator', 90 '../../base/allocator/allocator.gyp:allocator',
89 ], 91 ],
90 }], 92 }],
91 ], 93 ],
92 }, 94 },
93 ], 95 ],
94 } 96 }
OLDNEW
« ui/snapshot/screenshot_taker.cc ('K') | « ui/snapshot/screenshot_taker.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698