OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 }], | 382 }], |
383 ['desktop_linux == 1 or chromeos == 1', { | 383 ['desktop_linux == 1 or chromeos == 1', { |
384 'conditions': [ | 384 'conditions': [ |
385 ['toolkit_views==0 and use_aura==0', { | 385 ['toolkit_views==0 and use_aura==0', { |
386 # Note: because of gyp predence rules this has to be defined as | 386 # Note: because of gyp predence rules this has to be defined as |
387 # 'sources/' rather than 'sources!'. | 387 # 'sources/' rather than 'sources!'. |
388 'sources/': [ | 388 'sources/': [ |
389 ['exclude', '^dragdrop/drag_utils.cc'], | 389 ['exclude', '^dragdrop/drag_utils.cc'], |
390 ['exclude', '^dragdrop/drag_utils.h'], | 390 ['exclude', '^dragdrop/drag_utils.h'], |
391 ], | 391 ], |
| 392 }, { |
| 393 'sources/': [ |
| 394 ['include', '^dragdrop/os_exchange_data.cc'], |
| 395 ['include', '^dragdrop/os_exchange_data.h'], |
| 396 ['include', '^nine_image_painter_factory.cc'], |
| 397 ['include', '^nine_image_painter_factory.h'], |
| 398 ], |
392 }], | 399 }], |
393 ], | 400 ], |
394 }], | 401 }], |
395 ['use_pango==1', { | 402 ['use_pango==1', { |
396 'dependencies': [ | 403 'dependencies': [ |
397 '../../build/linux/system.gyp:pangocairo', | 404 '../../build/linux/system.gyp:pangocairo', |
398 ], | 405 ], |
399 }], | 406 }], |
400 ['OS=="win" or use_clipboard_aurax11==1', { | 407 ['OS=="win" or use_clipboard_aurax11==1', { |
401 'sources!': [ | 408 'sources!': [ |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 'variables': { | 624 'variables': { |
618 'jni_gen_package': 'ui', | 625 'jni_gen_package': 'ui', |
619 'jni_generator_ptr_type': 'long', | 626 'jni_generator_ptr_type': 'long', |
620 }, | 627 }, |
621 'includes': [ '../../build/jni_generator.gypi' ], | 628 'includes': [ '../../build/jni_generator.gypi' ], |
622 }, | 629 }, |
623 ], | 630 ], |
624 }], | 631 }], |
625 ], | 632 ], |
626 } | 633 } |
OLD | NEW |