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

Side by Side Diff: remoting/remoting.gyp

Issue 2849031: Get remoting.gyp depending only on the bits of gfx we need to depend on.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 '../media/base/yuv_row_posix.cc', 97 '../media/base/yuv_row_posix.cc',
98 ], 98 ],
99 }], 99 }],
100 ], # end of 'conditions' 100 ], # end of 'conditions'
101 }, # end of target 'chromoting_plugin' 101 }, # end of target 'chromoting_plugin'
102 102
103 { 103 {
104 'target_name': 'chromoting_base', 104 'target_name': 'chromoting_base',
105 'type': '<(library)', 105 'type': '<(library)',
106 'dependencies': [ 106 'dependencies': [
107 '../gfx/gfx.gyp:*', 107 '../gfx/gfx.gyp:gfx',
108 '../media/media.gyp:media', 108 '../media/media.gyp:media',
109 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', 109 '../third_party/protobuf2/protobuf.gyp:protobuf_lite',
110 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', 110 'base/protocol/chromotocol.gyp:chromotocol_proto_lib',
111 'chromoting_jingle_glue', 111 'chromoting_jingle_glue',
112 # TODO(hclam): Enable VP8 in the build. 112 # TODO(hclam): Enable VP8 in the build.
113 #'third_party/on2/on2.gyp:vp8', 113 #'third_party/on2/on2.gyp:vp8',
114 ], 114 ],
115 'export_dependent_settings': [ 115 'export_dependent_settings': [
116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', 116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite',
117 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', 117 'base/protocol/chromotocol.gyp:chromotocol_proto_lib',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'host/event_executor_linux.h', 186 'host/event_executor_linux.h',
187 ], 187 ],
188 }], 188 }],
189 ['OS=="mac"', { 189 ['OS=="mac"', {
190 'sources': [ 190 'sources': [
191 'host/capturer_mac.cc', 191 'host/capturer_mac.cc',
192 'host/capturer_mac.h', 192 'host/capturer_mac.h',
193 'host/event_executor_mac.cc', 193 'host/event_executor_mac.cc',
194 'host/event_executor_mac.h', 194 'host/event_executor_mac.h',
195 ], 195 ],
196 'link_settings': {
197 'libraries': [
198 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
garykac 2010/06/29 20:36:58 Just checking that this was an intended part of yo
199 ],
200 },
196 }], 201 }],
197 ], 202 ],
198 }, # end of target 'chromoting_host' 203 }, # end of target 'chromoting_host'
199 204
200 { 205 {
201 'target_name': 'chromoting_client', 206 'target_name': 'chromoting_client',
202 'type': '<(library)', 207 'type': '<(library)',
203 'dependencies': [ 208 'dependencies': [
204 'chromoting_base', 209 'chromoting_base',
205 'chromoting_jingle_glue', 210 'chromoting_jingle_glue',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 { 309 {
305 'target_name': 'remoting_unittests', 310 'target_name': 'remoting_unittests',
306 'type': 'executable', 311 'type': 'executable',
307 'dependencies': [ 312 'dependencies': [
308 'chromoting_base', 313 'chromoting_base',
309 'chromoting_client', 314 'chromoting_client',
310 'chromoting_host', 315 'chromoting_host',
311 'chromoting_jingle_glue', 316 'chromoting_jingle_glue',
312 '../base/base.gyp:base', 317 '../base/base.gyp:base',
313 '../base/base.gyp:base_i18n', 318 '../base/base.gyp:base_i18n',
314 '../gfx/gfx.gyp:*', 319 '../gfx/gfx.gyp:gfx',
315 '../testing/gmock.gyp:gmock', 320 '../testing/gmock.gyp:gmock',
316 '../testing/gtest.gyp:gtest', 321 '../testing/gtest.gyp:gtest',
317 ], 322 ],
318 'include_dirs': [ 323 'include_dirs': [
319 '../testing/gmock/include', 324 '../testing/gmock/include',
320 ], 325 ],
321 'sources': [ 326 'sources': [
322 'host/client_connection_unittest.cc', 327 'host/client_connection_unittest.cc',
323 'base/mock_objects.h', 328 'base/mock_objects.h',
324 'base/multiple_array_input_stream_unittest.cc', 329 'base/multiple_array_input_stream_unittest.cc',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 ], # end of 'conditions' 370 ], # end of 'conditions'
366 }, # end of target 'chromoting_unittests' 371 }, # end of target 'chromoting_unittests'
367 ], # end of targets 372 ], # end of targets
368 } 373 }
369 374
370 # Local Variables: 375 # Local Variables:
371 # tab-width:2 376 # tab-width:2
372 # indent-tabs-mode:nil 377 # indent-tabs-mode:nil
373 # End: 378 # End:
374 # vim: set expandtab tabstop=2 shiftwidth=2: 379 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698