| 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 { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'snapshot_aura_unittest.cc', | 56 'snapshot_aura_unittest.cc', |
| 57 'snapshot_mac_unittest.mm', | 57 'snapshot_mac_unittest.mm', |
| 58 'test/run_all_unittests.cc', | 58 'test/run_all_unittests.cc', |
| 59 ], | 59 ], |
| 60 'conditions': [ | 60 'conditions': [ |
| 61 ['use_aura==1', { | 61 ['use_aura==1', { |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '../../base/base.gyp:test_support_base', | 63 '../../base/base.gyp:test_support_base', |
| 64 '../aura/aura.gyp:aura_test_support', | 64 '../aura/aura.gyp:aura_test_support', |
| 65 '../compositor/compositor.gyp:compositor', | 65 '../compositor/compositor.gyp:compositor', |
| 66 '../compositor/compositor.gyp:compositor_test_support', |
| 66 ], | 67 ], |
| 67 }], | 68 }], |
| 68 ], | 69 ], |
| 69 }, | 70 }, |
| 70 ], | 71 ], |
| 71 'conditions': [ | 72 'conditions': [ |
| 72 ['OS=="win"', { | 73 ['OS=="win"', { |
| 73 'targets': [ | 74 'targets': [ |
| 74 { | 75 { |
| 75 'target_name': 'snapshot_test_support', | 76 'target_name': 'snapshot_test_support', |
| 76 'type': 'static_library', | 77 'type': 'static_library', |
| 77 'sources': [ | 78 'sources': [ |
| 78 'test/snapshot_desktop.h', | 79 'test/snapshot_desktop.h', |
| 79 'test/snapshot_desktop_win.cc', | 80 'test/snapshot_desktop_win.cc', |
| 80 ], | 81 ], |
| 81 'dependencies': [ | 82 'dependencies': [ |
| 82 'snapshot', | 83 'snapshot', |
| 83 ], | 84 ], |
| 84 'include_dirs': [ | 85 'include_dirs': [ |
| 85 '../..', | 86 '../..', |
| 86 ], | 87 ], |
| 87 }, | 88 }, |
| 88 ], | 89 ], |
| 89 }], | 90 }], |
| 90 ], | 91 ], |
| 91 } | 92 } |
| OLD | NEW |