Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: remoting/remoting_test.gypi

Issue 1334253002: Fix running gyp with configuration_policy=0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for GN Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/host/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //remoting:test_support 8 # GN version: //remoting:test_support
9 'target_name': 'remoting_test_support', 9 'target_name': 'remoting_test_support',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 ], 107 ],
108 'conditions': [ 108 'conditions': [
109 ['enable_remoting_host == 0', { 109 ['enable_remoting_host == 0', {
110 'dependencies!': [ 110 'dependencies!': [
111 'remoting_host', 111 'remoting_host',
112 ], 112 ],
113 'sources/': [ 113 'sources/': [
114 ['exclude', '^host/'], 114 ['exclude', '^host/'],
115 ] 115 ]
116 }], 116 }],
117 ['configuration_policy == 0', {
blundell 2015/09/14 07:54:23 Why did you do this one as a subtraction rather th
118 'dependencies!': [
119 '../components/components.gyp:policy_component_test_support',
120 ],
121 }],
117 ], 122 ],
118 }, 123 },
119 { 124 {
120 'target_name': 'chromoting_test_driver', 125 'target_name': 'chromoting_test_driver',
121 'type': '<(gtest_target_type)', 126 'type': '<(gtest_target_type)',
122 'dependencies': [ 127 'dependencies': [
123 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', 128 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
124 '../testing/gtest.gyp:gtest', 129 '../testing/gtest.gyp:gtest',
125 'remoting_test_support', 130 'remoting_test_support',
126 ], 131 ],
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 'sources/': [ 396 'sources/': [
392 ['exclude', '^codec/'], 397 ['exclude', '^codec/'],
393 ['exclude', '^host/'], 398 ['exclude', '^host/'],
394 ] 399 ]
395 }], 400 }],
396 [ 'OS == "linux" and use_allocator!="none"', { 401 [ 'OS == "linux" and use_allocator!="none"', {
397 'dependencies': [ 402 'dependencies': [
398 '../base/allocator/allocator.gyp:allocator', 403 '../base/allocator/allocator.gyp:allocator',
399 ], 404 ],
400 }], 405 }],
406 ['configuration_policy == 0', {
407 'dependencies!': [
408 '../components/components.gyp:policy',
409 ],
410 }],
401 ], # end of 'conditions' 411 ], # end of 'conditions'
402 }, # end of target 'remoting_unittests' 412 }, # end of target 'remoting_unittests'
403 { 413 {
404 # GN version: //remoting/webapp:browser_test_resources 414 # GN version: //remoting/webapp:browser_test_resources
405 'target_name': 'remoting_browser_test_resources', 415 'target_name': 'remoting_browser_test_resources',
406 'type': 'none', 416 'type': 'none',
407 'copies': [ 417 'copies': [
408 { 418 {
409 'destination': '<(PRODUCT_DIR)/remoting/browser_test_resources', 419 'destination': '<(PRODUCT_DIR)/remoting/browser_test_resources',
410 'files': [ 420 'files': [
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 '../build/isolate.gypi', 615 '../build/isolate.gypi',
606 ], 616 ],
607 'sources': [ 617 'sources': [
608 'remoting_unittests.isolate', 618 'remoting_unittests.isolate',
609 ], 619 ],
610 }, 620 },
611 ], 621 ],
612 }], 622 }],
613 ] # end of 'conditions' 623 ] # end of 'conditions'
614 } 624 }
OLDNEW
« no previous file with comments | « remoting/host/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698