Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: courgette/courgette.gyp

Issue 203076: Fix the Linux shared build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'encode_decode_unittest.cc', 87 'encode_decode_unittest.cc',
88 'image_info_unittest.cc', 88 'image_info_unittest.cc',
89 'run_all_unittests.cc', 89 'run_all_unittests.cc',
90 'streams_unittest.cc', 90 'streams_unittest.cc',
91 ], 91 ],
92 'dependencies': [ 92 'dependencies': [
93 'courgette_lib', 93 'courgette_lib',
94 '../base/base.gyp:base', 94 '../base/base.gyp:base',
95 '../testing/gtest.gyp:gtest', 95 '../testing/gtest.gyp:gtest',
96 ], 96 ],
97 'conditions': [
98 [ 'OS == "linux" or OS == "freebsd"', {
99 'dependencies': [
100 # Workaround for gyp bug 69.
101 # Needed to handle the #include chain:
102 # base/test_suite.h
103 # gtk/gtk.h
104 '../build/linux/system.gyp:gtk',
105 ],
106 }],
107 ],
97 }, 108 },
98 { 109 {
99 'target_name': 'courgette_fuzz', 110 'target_name': 'courgette_fuzz',
100 'type': 'executable', 111 'type': 'executable',
101 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785', 112 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785',
102 'sources': [ 113 'sources': [
103 'encoded_program_fuzz_unittest.cc', 114 'encoded_program_fuzz_unittest.cc',
104 ], 115 ],
105 'dependencies': [ 116 'dependencies': [
106 'courgette_lib', 117 'courgette_lib',
107 '../base/base.gyp:base', 118 '../base/base.gyp:base',
108 '../testing/gtest.gyp:gtest', 119 '../testing/gtest.gyp:gtest',
109 ], 120 ],
121 'conditions': [
122 [ 'OS == "linux" or OS == "freebsd"', {
123 'dependencies': [
124 # Workaround for gyp bug 69.
125 # Needed to handle the #include chain:
126 # base/test_suite.h
127 # gtk/gtk.h
128 '../build/linux/system.gyp:gtk',
129 ],
130 }],
131 ],
110 }, 132 },
111 ], 133 ],
112 } 134 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | printing/printing.gyp » ('j') | third_party/ffmpeg/ffmpeg.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698