| 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 '../../skia/skia.gyp:skia', | 14 '../../skia/skia.gyp:skia', |
| 15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
| 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 'snapshot.h', | 24 'snapshot.h', |
| 25 'snapshot_android.cc', | 25 'snapshot_android.cc', |
| 26 'snapshot_aura.cc', | 26 'snapshot_aura.cc', |
| 27 'snapshot_export.h', | 27 'snapshot_export.h', |
| 28 'snapshot_gtk.cc', | |
| 29 'snapshot_ios.mm', | 28 'snapshot_ios.mm', |
| 30 'snapshot_mac.mm', | 29 'snapshot_mac.mm', |
| 31 'snapshot_win.cc', | 30 'snapshot_win.cc', |
| 32 'snapshot_win.h', | 31 'snapshot_win.h', |
| 33 ], | 32 ], |
| 34 'include_dirs': [ | 33 'include_dirs': [ |
| 35 '..', | 34 '..', |
| 36 ], | 35 ], |
| 37 'conditions': [ | 36 'conditions': [ |
| 38 ['use_aura==1', { | 37 ['use_aura==1', { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'snapshot', | 94 'snapshot', |
| 96 ], | 95 ], |
| 97 'include_dirs': [ | 96 'include_dirs': [ |
| 98 '../..', | 97 '../..', |
| 99 ], | 98 ], |
| 100 }, | 99 }, |
| 101 ], | 100 ], |
| 102 }], | 101 }], |
| 103 ], | 102 ], |
| 104 } | 103 } |
| OLD | NEW |