OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_common', | 8 'target_name': 'content_common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 'sources': [ | 273 'sources': [ |
274 'common/gpu/x_util.cc', | 274 'common/gpu/x_util.cc', |
275 'common/gpu/x_util.h', | 275 'common/gpu/x_util.h', |
276 ], | 276 ], |
277 }], | 277 }], |
278 ['toolkit_views==1', { | 278 ['toolkit_views==1', { |
279 'sources': [ | 279 'sources': [ |
280 'common/native_web_keyboard_event_views.cc', | 280 'common/native_web_keyboard_event_views.cc', |
281 ], | 281 ], |
282 }], | 282 }], |
| 283 ['touchui==1', { |
| 284 'sources': [ |
| 285 'common/gpu/image_transport_surface_linux.h', |
| 286 'common/gpu/image_transport_surface_linux.cc', |
| 287 ], |
| 288 'include_dirs': [ |
| 289 '<(DEPTH)/third_party/angle/include', |
| 290 ], |
| 291 'link_settings': { |
| 292 'libraries': [ |
| 293 '-lXcomposite', |
| 294 ], |
| 295 }, |
| 296 }], |
283 ['enable_gpu==1', { | 297 ['enable_gpu==1', { |
284 'dependencies': [ | 298 'dependencies': [ |
285 '../gpu/gpu.gyp:command_buffer_service', | 299 '../gpu/gpu.gyp:command_buffer_service', |
286 ], | 300 ], |
287 }], | 301 }], |
288 ['target_arch=="arm"', { | 302 ['target_arch=="arm"', { |
289 'dependencies': [ | 303 'dependencies': [ |
290 '../media/media.gyp:media', | 304 '../media/media.gyp:media', |
291 ], | 305 ], |
292 'sources': [ | 306 'sources': [ |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 ], | 340 ], |
327 'sources': [ | 341 'sources': [ |
328 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', | 342 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', |
329 ], | 343 ], |
330 } | 344 } |
331 ], | 345 ], |
332 }, | 346 }, |
333 ], | 347 ], |
334 ], | 348 ], |
335 } | 349 } |
OLD | NEW |