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

Side by Side Diff: sandbox/mac/BUILD.gn

Issue 375873006: Rename source_prereqs to inputs in the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « mojo/public/tools/bindings/mojom.gni ('k') | third_party/yasm/BUILD.gn » ('j') | 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 component("sandbox") { 5 component("sandbox") {
6 sources = [ 6 sources = [
7 "bootstrap_sandbox.cc", 7 "bootstrap_sandbox.cc",
8 "bootstrap_sandbox.h", 8 "bootstrap_sandbox.h",
9 "launchd_interception_server.cc", 9 "launchd_interception_server.cc",
10 "launchd_interception_server.h", 10 "launchd_interception_server.h",
(...skipping 19 matching lines...) Expand all
30 generate_stubs_script = "//tools/generate_stubs/generate_stubs.py" 30 generate_stubs_script = "//tools/generate_stubs/generate_stubs.py"
31 generate_stubs_header = "xpc_stubs_header.fragment" 31 generate_stubs_header = "xpc_stubs_header.fragment"
32 generate_stubs_sig_public = "xpc_stubs.sig" 32 generate_stubs_sig_public = "xpc_stubs.sig"
33 generate_stubs_sig_private = "xpc_private_stubs.sig" 33 generate_stubs_sig_private = "xpc_private_stubs.sig"
34 generate_stubs_project = "sandbox/mac" 34 generate_stubs_project = "sandbox/mac"
35 generate_stubs_output_stem = "xpc_stubs" 35 generate_stubs_output_stem = "xpc_stubs"
36 36
37 action("generate_stubs") { 37 action("generate_stubs") {
38 script = generate_stubs_script 38 script = generate_stubs_script
39 sources = [ generate_stubs_sig_public, generate_stubs_sig_private ] 39 sources = [ generate_stubs_sig_public, generate_stubs_sig_private ]
40 source_prereqs = [ generate_stubs_header ] 40 inputs = [ generate_stubs_header ]
41 outputs = [ 41 outputs = [
42 "$target_gen_dir/$generate_stubs_output_stem.cc", 42 "$target_gen_dir/$generate_stubs_output_stem.cc",
43 "$target_gen_dir/$generate_stubs_output_stem.h", 43 "$target_gen_dir/$generate_stubs_output_stem.h",
44 ] 44 ]
45 args = [ 45 args = [
46 "-i", rebase_path(target_gen_dir, root_build_dir), 46 "-i", rebase_path(target_gen_dir, root_build_dir),
47 "-o", rebase_path(target_gen_dir, root_build_dir), 47 "-o", rebase_path(target_gen_dir, root_build_dir),
48 "-t", "posix_stubs", 48 "-t", "posix_stubs",
49 "-e", rebase_path(generate_stubs_header, root_build_dir), 49 "-e", rebase_path(generate_stubs_header, root_build_dir),
50 "-s", generate_stubs_output_stem, 50 "-s", generate_stubs_output_stem,
(...skipping 13 matching lines...) Expand all
64 "Foundation.framework", 64 "Foundation.framework",
65 ] 65 ]
66 66
67 deps = [ 67 deps = [
68 ":sandbox", 68 ":sandbox",
69 "//base", 69 "//base",
70 "//base/test:run_all_unittests", 70 "//base/test:run_all_unittests",
71 "//testing/gtest", 71 "//testing/gtest",
72 ] 72 ]
73 } 73 }
OLDNEW
« no previous file with comments | « mojo/public/tools/bindings/mojom.gni ('k') | third_party/yasm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698