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 23 matching lines...) Expand all Loading... |
34 'include_dirs': [ | 34 'include_dirs': [ |
35 '..', | 35 '..', |
36 ], | 36 ], |
37 'conditions': [ | 37 'conditions': [ |
38 ['use_aura==1', { | 38 ['use_aura==1', { |
39 'dependencies': [ | 39 'dependencies': [ |
40 '../aura/aura.gyp:aura', | 40 '../aura/aura.gyp:aura', |
41 '../compositor/compositor.gyp:compositor', | 41 '../compositor/compositor.gyp:compositor', |
42 ], | 42 ], |
43 }], | 43 }], |
| 44 ['OS=="mac"', { |
| 45 'link_settings': { |
| 46 'libraries': [ |
| 47 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 48 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor
k', |
| 49 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 50 ], |
| 51 }, |
| 52 }], |
44 ], | 53 ], |
45 }, | 54 }, |
46 { | 55 { |
47 'target_name': 'snapshot_unittests', | 56 'target_name': 'snapshot_unittests', |
48 'type': '<(gtest_target_type)', | 57 'type': '<(gtest_target_type)', |
49 'dependencies': [ | 58 'dependencies': [ |
50 '../../skia/skia.gyp:skia', | 59 '../../skia/skia.gyp:skia', |
51 '../../base/base.gyp:base', | 60 '../../base/base.gyp:base', |
52 '../../base/base.gyp:test_support_base', | 61 '../../base/base.gyp:test_support_base', |
53 '../../testing/gtest.gyp:gtest', | 62 '../../testing/gtest.gyp:gtest', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'snapshot', | 102 'snapshot', |
94 ], | 103 ], |
95 'include_dirs': [ | 104 'include_dirs': [ |
96 '../..', | 105 '../..', |
97 ], | 106 ], |
98 }, | 107 }, |
99 ], | 108 ], |
100 }], | 109 }], |
101 ], | 110 ], |
102 } | 111 } |
OLD | NEW |