OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'courgette_lib_sources': [ | 8 'courgette_lib_sources': [ |
9 'adjustment_method.cc', | 9 'adjustment_method.cc', |
10 'adjustment_method_2.cc', | 10 'adjustment_method_2.cc', |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 'third_party/paged_array_unittest.cc' | 99 'third_party/paged_array_unittest.cc' |
100 ], | 100 ], |
101 'dependencies': [ | 101 'dependencies': [ |
102 'courgette_lib', | 102 'courgette_lib', |
103 '../base/base.gyp:base', | 103 '../base/base.gyp:base', |
104 '../base/base.gyp:base_i18n', | 104 '../base/base.gyp:base_i18n', |
105 '../base/base.gyp:test_support_base', | 105 '../base/base.gyp:test_support_base', |
106 '../testing/gtest.gyp:gtest', | 106 '../testing/gtest.gyp:gtest', |
107 ], | 107 ], |
108 'conditions': [ | 108 'conditions': [ |
109 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 109 [ 'toolkit_uses_gtk == 1', { |
110 'dependencies': [ | 110 'dependencies': [ |
111 # Workaround for gyp bug 69. | 111 # Workaround for gyp bug 69. |
112 # Needed to handle the #include chain: | 112 # Needed to handle the #include chain: |
113 # base/test_suite.h | 113 # base/test_suite.h |
114 # gtk/gtk.h | 114 # gtk/gtk.h |
115 '../build/linux/system.gyp:gtk', | 115 '../build/linux/system.gyp:gtk', |
116 ], | 116 ], |
117 }], | 117 }], |
118 ], | 118 ], |
119 }, | 119 }, |
120 { | 120 { |
121 'target_name': 'courgette_fuzz', | 121 'target_name': 'courgette_fuzz', |
122 'type': 'executable', | 122 'type': 'executable', |
123 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785', | 123 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785', |
124 'sources': [ | 124 'sources': [ |
125 'encoded_program_fuzz_unittest.cc', | 125 'encoded_program_fuzz_unittest.cc', |
126 ], | 126 ], |
127 'dependencies': [ | 127 'dependencies': [ |
128 'courgette_lib', | 128 'courgette_lib', |
129 '../base/base.gyp:base', | 129 '../base/base.gyp:base', |
130 '../base/base.gyp:base_i18n', | 130 '../base/base.gyp:base_i18n', |
131 '../base/base.gyp:test_support_base', | 131 '../base/base.gyp:test_support_base', |
132 '../testing/gtest.gyp:gtest', | 132 '../testing/gtest.gyp:gtest', |
133 ], | 133 ], |
134 'conditions': [ | 134 'conditions': [ |
135 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 135 [ 'toolkit_uses_gtk == 1', { |
136 'dependencies': [ | 136 'dependencies': [ |
137 # Workaround for gyp bug 69. | 137 # Workaround for gyp bug 69. |
138 # Needed to handle the #include chain: | 138 # Needed to handle the #include chain: |
139 # base/test_suite.h | 139 # base/test_suite.h |
140 # gtk/gtk.h | 140 # gtk/gtk.h |
141 '../build/linux/system.gyp:gtk', | 141 '../build/linux/system.gyp:gtk', |
142 ], | 142 ], |
143 }], | 143 }], |
144 ], | 144 ], |
145 }, | 145 }, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 ], | 182 ], |
183 }], | 183 }], |
184 ], | 184 ], |
185 } | 185 } |
186 | 186 |
187 # Local Variables: | 187 # Local Variables: |
188 # tab-width:2 | 188 # tab-width:2 |
189 # indent-tabs-mode:nil | 189 # indent-tabs-mode:nil |
190 # End: | 190 # End: |
191 # vim: set expandtab tabstop=2 shiftwidth=2: | 191 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |