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 'test_shell_windows_resource_files': [ | 7 'test_shell_windows_resource_files': [ |
8 'resources/test_shell.rc', | 8 'resources/test_shell.rc', |
9 'resources/pan_east.cur', | 9 'resources/pan_east.cur', |
10 'resources/pan_middle.cur', | 10 'resources/pan_middle.cur', |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'webwidget_host_gtk.cc', | 115 'webwidget_host_gtk.cc', |
116 'webwidget_host_win.cc', | 116 'webwidget_host_win.cc', |
117 ], | 117 ], |
118 'export_dependent_settings': [ | 118 'export_dependent_settings': [ |
119 '<(DEPTH)/base/base.gyp:base', | 119 '<(DEPTH)/base/base.gyp:base', |
120 '<(DEPTH)/net/net.gyp:net', | 120 '<(DEPTH)/net/net.gyp:net', |
121 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 121 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
122 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 122 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
123 ], | 123 ], |
124 'conditions': [ | 124 'conditions': [ |
125 # http://code.google.com/p/chromium/issues/detail?id=18337 | 125 ['target_arch!="arm"', { |
126 ['target_arch!="x64" and target_arch!="arm"', { | |
127 'dependencies': [ | 126 'dependencies': [ |
128 'copy_npapi_test_plugin', | 127 'copy_npapi_test_plugin', |
129 ], | 128 ], |
130 }], | 129 }], |
131 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 130 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
132 'dependencies': [ | 131 'dependencies': [ |
133 'test_shell_resources', | 132 'test_shell_resources', |
134 '<(DEPTH)/build/linux/system.gyp:gtk', | 133 '<(DEPTH)/build/linux/system.gyp:gtk', |
135 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 134 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
136 ], | 135 ], |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 'dependencies': [ | 494 'dependencies': [ |
496 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 495 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
497 ], | 496 ], |
498 }], | 497 }], |
499 ], | 498 ], |
500 }], | 499 }], |
501 ], | 500 ], |
502 }, | 501 }, |
503 ], | 502 ], |
504 'conditions': [ | 503 'conditions': [ |
505 ['target_arch!="x64" and target_arch!="arm"', { | 504 ['target_arch!="arm"', { |
506 'targets': [ | 505 'targets': [ |
507 { | 506 { |
508 'target_name': 'npapi_test_common', | 507 'target_name': 'npapi_test_common', |
509 'type': 'static_library', | 508 'type': 'static_library', |
510 'dependencies': [ | 509 'dependencies': [ |
511 '<(DEPTH)/base/base.gyp:base', | 510 '<(DEPTH)/base/base.gyp:base', |
512 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', | 511 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', |
513 ], | 512 ], |
514 'sources': [ | 513 'sources': [ |
515 '../../plugins/npapi/test/npapi_constants.cc', | 514 '../../plugins/npapi/test/npapi_constants.cc', |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
735 ], | 734 ], |
736 }], | 735 }], |
737 ], | 736 ], |
738 } | 737 } |
739 | 738 |
740 # Local Variables: | 739 # Local Variables: |
741 # tab-width:2 | 740 # tab-width:2 |
742 # indent-tabs-mode:nil | 741 # indent-tabs-mode:nil |
743 # End: | 742 # End: |
744 # vim: set expandtab tabstop=2 shiftwidth=2: | 743 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |