OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'ui_resources.gypi', | 10 'ui_resources.gypi', |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
764 '-ldl', | 764 '-ldl', |
765 ], | 765 ], |
766 }], | 766 }], |
767 ['inside_chromium_build==0', { | 767 ['inside_chromium_build==0', { |
768 'dependencies': [ | 768 'dependencies': [ |
769 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 769 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
770 ], | 770 ], |
771 }], | 771 }], |
772 ], | 772 ], |
773 }, | 773 }, |
774 { | |
775 'target_name': 'viewer', | |
tfarina
2012/08/28 00:54:22
nonono, please, like ui/app_list, ui/views, and wh
| |
776 'type': 'static_library', | |
777 'dependencies': [ | |
778 '../base/base.gyp:base', | |
779 '../skia/skia.gyp:skia', | |
780 ], | |
781 'sources': [ | |
782 'viewer/viewer_host_win.cc', | |
783 'viewer/viewer_host_win.h', | |
784 'viewer/viewer_ipc_server.cc', | |
785 'viewer/viewer_ipc_server.h', | |
786 'viewer/viewer_main.cc', | |
787 'viewer/viewer_message_generator.cc', | |
788 'viewer/viewer_message_generator.h', | |
789 'viewer/viewer_process.cc', | |
790 'viewer/viewer_process.h', | |
791 ], | |
792 'include_dirs': [ | |
793 '..', | |
794 ], | |
795 }, | |
774 ], | 796 ], |
775 'conditions': [ | 797 'conditions': [ |
776 ['inside_chromium_build == 1 and OS != "ios"', { | 798 ['inside_chromium_build == 1 and OS != "ios"', { |
777 # TODO(ios): The ui tests do not compile yet on iOS. | 799 # TODO(ios): The ui tests do not compile yet on iOS. |
778 'includes': [ | 800 'includes': [ |
779 'ui_unittests.gypi', | 801 'ui_unittests.gypi', |
780 ]}, | 802 ]}, |
781 ], | 803 ], |
782 ], | 804 ], |
783 } | 805 } |
OLD | NEW |