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