| 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 '../../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 Loading... |
| 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 } |
| OLD | NEW |