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

Side by Side Diff: services/shell/shell.gyp

Issue 2291783002: seccomp-bpf-helpers: Fix undefined reference (Closed)
Patch Set: replicating changes in gyp files Created 4 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 | « services/shell/runner/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'target_name': 'shell_lib', 8 'target_name': 'shell_lib',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'conditions': [ 139 'conditions': [
140 ['OS=="linux"', { 140 ['OS=="linux"', {
141 'sources': [ 141 'sources': [
142 'runner/host/linux_sandbox.cc', 142 'runner/host/linux_sandbox.cc',
143 'runner/host/linux_sandbox.h', 143 'runner/host/linux_sandbox.h',
144 ], 144 ],
145 'dependencies': [ 145 'dependencies': [
146 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', 146 '<(DEPTH)/sandbox/sandbox.gyp:sandbox',
147 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', 147 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services',
148 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', 148 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf',
149 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers',
150 ], 149 ],
151 }], 150 }],
152 ['OS=="mac"', { 151 ['OS=="mac"', {
153 'sources': [ 152 'sources': [
154 'runner/host/mach_broker.cc', 153 'runner/host/mach_broker.cc',
155 'runner/host/mach_broker.h', 154 'runner/host/mach_broker.h',
156 ], 155 ],
157 }], 156 }],
158 ], 157 ],
159 }, { 158 }, {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 '../../build/isolate.gypi', 195 '../../build/isolate.gypi',
197 ], 196 ],
198 'sources': [ 197 'sources': [
199 'mojo_shell_unittests.isolate', 198 'mojo_shell_unittests.isolate',
200 ], 199 ],
201 }, 200 },
202 ], 201 ],
203 }], 202 }],
204 ], 203 ],
205 } 204 }
OLDNEW
« no previous file with comments | « services/shell/runner/host/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698