Make USB permissions work in the new permission message system
[chromium-blink-merge.git] / content / browser / gpu / test_support_gpu.gypi
blob7c4beaa24e5e0f6806ff039c11c73e10b0c06c20
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
3 # found in the LICENSE file.
5 # This file is meant to be included into targets which run gpu tests.
7   'variables': {
8      'test_list_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content/test/gpu',
9      'src_dir': '../../..',
10   },
11   'defines': [
12     'HAS_OUT_OF_PROC_TEST_RUNNER',
13   ],
14   'include_dirs': [
15     '<(src_dir)',
16     '<(test_list_out_dir)',
17   ],
18   # hard_dependency is necessary for this target because it has actions
19   # that generate a header file included by dependent targets. The header
20   # file must be generated before the dependents are compiled. The usual
21   # semantics are to allow the two targets to build concurrently.
22   'hard_dependency': 1,
23   'conditions': [
24     ['OS=="win"', {
25       'include_dirs': [
26         '<(DEPTH)/third_party/wtl/include',
27       ],
28       'conditions': [
29         ['win_use_allocator_shim==1', {
30           'dependencies': [
31             '../base/allocator/allocator.gyp:allocator',
32           ],
33         }],
34       ],
35       'configurations': {
36         'Debug': {
37           'msvs_settings': {
38             'VCLinkerTool': {
39               'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
40             },
41           },
42         },
43       },
44     }],
45     ['OS=="mac"', {
46       # See comments about "xcode_settings" elsewhere in this file.
47       'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
48     }],
49     ['chromeos==1 or (OS=="linux" and use_aura==1)', {
50       'dependencies': [
51         '<(src_dir)/build/linux/system.gyp:ssl',
52       ],
53     }],
54     ['toolkit_views==1', {
55       'dependencies': [
56        '<(src_dir)/ui/views/views.gyp:views',
57       ],
58     }],
59   ],