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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'encode_decode_unittest.cc', | 85 'encode_decode_unittest.cc', |
86 'image_info_unittest.cc', | 86 'image_info_unittest.cc', |
87 'run_all_unittests.cc', | 87 'run_all_unittests.cc', |
88 'streams_unittest.cc', | 88 'streams_unittest.cc', |
89 'third_party/paged_array_unittest.cc' | 89 'third_party/paged_array_unittest.cc' |
90 ], | 90 ], |
91 'dependencies': [ | 91 'dependencies': [ |
92 'courgette_lib', | 92 'courgette_lib', |
93 '../base/base.gyp:base', | 93 '../base/base.gyp:base', |
94 '../base/base.gyp:base_i18n', | 94 '../base/base.gyp:base_i18n', |
95 '../base/base.gyp:test_support_base', | |
96 '../testing/gtest.gyp:gtest', | 95 '../testing/gtest.gyp:gtest', |
97 ], | 96 ], |
98 'conditions': [ | 97 'conditions': [ |
99 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 98 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
100 'dependencies': [ | 99 'dependencies': [ |
101 # Workaround for gyp bug 69. | 100 # Workaround for gyp bug 69. |
102 # Needed to handle the #include chain: | 101 # Needed to handle the #include chain: |
103 # base/test_suite.h | 102 # base/test_suite.h |
104 # gtk/gtk.h | 103 # gtk/gtk.h |
105 '../build/linux/system.gyp:gtk', | 104 '../build/linux/system.gyp:gtk', |
106 ], | 105 ], |
107 }], | 106 }], |
108 ], | 107 ], |
109 }, | 108 }, |
110 { | 109 { |
111 'target_name': 'courgette_fuzz', | 110 'target_name': 'courgette_fuzz', |
112 'type': 'executable', | 111 'type': 'executable', |
113 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785', | 112 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785', |
114 'sources': [ | 113 'sources': [ |
115 'encoded_program_fuzz_unittest.cc', | 114 'encoded_program_fuzz_unittest.cc', |
116 ], | 115 ], |
117 'dependencies': [ | 116 'dependencies': [ |
118 'courgette_lib', | 117 'courgette_lib', |
119 '../base/base.gyp:base', | 118 '../base/base.gyp:base', |
120 '../base/base.gyp:base_i18n', | 119 '../base/base.gyp:base_i18n', |
121 '../base/base.gyp:test_support_base', | |
122 '../testing/gtest.gyp:gtest', | 120 '../testing/gtest.gyp:gtest', |
123 ], | 121 ], |
124 'conditions': [ | 122 'conditions': [ |
125 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 123 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
126 'dependencies': [ | 124 'dependencies': [ |
127 # Workaround for gyp bug 69. | 125 # Workaround for gyp bug 69. |
128 # Needed to handle the #include chain: | 126 # Needed to handle the #include chain: |
129 # base/test_suite.h | 127 # base/test_suite.h |
130 # gtk/gtk.h | 128 # gtk/gtk.h |
131 '../build/linux/system.gyp:gtk', | 129 '../build/linux/system.gyp:gtk', |
132 ], | 130 ], |
133 }], | 131 }], |
134 ], | 132 ], |
135 }, | 133 }, |
136 ], | 134 ], |
137 } | 135 } |
138 | 136 |
139 # Local Variables: | 137 # Local Variables: |
140 # tab-width:2 | 138 # tab-width:2 |
141 # indent-tabs-mode:nil | 139 # indent-tabs-mode:nil |
142 # End: | 140 # End: |
143 # vim: set expandtab tabstop=2 shiftwidth=2: | 141 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |