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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'player_x11_renderer%': 'x11', | 8 'player_x11_renderer%': 'x11', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
671 ['os_posix == 1 and OS != "mac"', { | 671 ['os_posix == 1 and OS != "mac"', { |
672 'targets': [ | 672 'targets': [ |
673 { | 673 { |
674 'target_name': 'omx_test', | 674 'target_name': 'omx_test', |
675 'type': 'executable', | 675 'type': 'executable', |
676 'dependencies': [ | 676 'dependencies': [ |
677 'media', | 677 'media', |
678 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 678 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
679 '../third_party/openmax/openmax.gyp:il', | 679 '../third_party/openmax/openmax.gyp:il', |
680 ], | 680 ], |
681 'conditions': [ | |
682 ['touchui == 1', { | |
683 'dependencies': [ | |
684 '../build/linux/system.gyp:gtk', | |
Ami GONE FROM CHROMIUM
2011/06/24 15:55:02
This looks strange to me, since none of the source
sadrul
2011/06/24 17:14:01
omx_test.cc uses the message_loop. Would it be a g
| |
685 ], | |
686 }], | |
687 ], | |
681 'sources': [ | 688 'sources': [ |
682 'tools/omx_test/color_space_util.cc', | 689 'tools/omx_test/color_space_util.cc', |
683 'tools/omx_test/color_space_util.h', | 690 'tools/omx_test/color_space_util.h', |
684 'tools/omx_test/file_reader_util.cc', | 691 'tools/omx_test/file_reader_util.cc', |
685 'tools/omx_test/file_reader_util.h', | 692 'tools/omx_test/file_reader_util.h', |
686 'tools/omx_test/file_sink.cc', | 693 'tools/omx_test/file_sink.cc', |
687 'tools/omx_test/file_sink.h', | 694 'tools/omx_test/file_sink.h', |
688 'tools/omx_test/omx_test.cc', | 695 'tools/omx_test/omx_test.cc', |
689 ], | 696 ], |
690 }, | 697 }, |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
789 ], | 796 ], |
790 }], | 797 }], |
791 ], | 798 ], |
792 } | 799 } |
793 | 800 |
794 # Local Variables: | 801 # Local Variables: |
795 # tab-width:2 | 802 # tab-width:2 |
796 # indent-tabs-mode:nil | 803 # indent-tabs-mode:nil |
797 # End: | 804 # End: |
798 # vim: set expandtab tabstop=2 shiftwidth=2: | 805 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |