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

Side by Side Diff: build/toolchain/win/midl.gni

Issue 1183633003: cross gn Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: slightly smaller diff Created 4 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
« no previous file with comments | « build/toolchain/win/BUILD.gn ('k') | build/win/message_compiler.py » ('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 assert(is_win) 5 assert(is_win)
6 6
7 import("//build/config/win/visual_studio_version.gni") 7 import("//build/config/win/visual_studio_version.gni")
8 8
9 # This template defines a rule to invoke the MS IDL compiler. The generated 9 # This template defines a rule to invoke the MS IDL compiler. The generated
10 # source code will be compiled and linked into targets that depend on this. 10 # source code will be compiled and linked into targets that depend on this.
(...skipping 27 matching lines...) Expand all
38 proxy_file = "{{source_name_part}}_p.c" 38 proxy_file = "{{source_name_part}}_p.c"
39 type_library_file = "{{source_name_part}}.tlb" 39 type_library_file = "{{source_name_part}}.tlb"
40 40
41 action_foreach(action_name) { 41 action_foreach(action_name) {
42 visibility = [ ":$source_set_name" ] 42 visibility = [ ":$source_set_name" ]
43 43
44 # This functionality is handled by the win-tool because the GYP build has 44 # This functionality is handled by the win-tool because the GYP build has
45 # MIDL support built-in. 45 # MIDL support built-in.
46 # TODO(brettw) move this to a separate MIDL wrapper script for better 46 # TODO(brettw) move this to a separate MIDL wrapper script for better
47 # clarity once GYP support is not needed. 47 # clarity once GYP support is not needed.
48 script = "$root_build_dir/gyp-win-tool" 48 #script = "$root_build_dir/gyp-win-tool"
49 script = "//build/android/gyp/touch.py"
49 50
50 sources = invoker.sources 51 sources = invoker.sources
51 52
52 # Note that .tlb is not included in the outputs as it is not always 53 # Note that .tlb is not included in the outputs as it is not always
53 # generated depending on the content of the input idl file. 54 # generated depending on the content of the input idl file.
54 outputs = [ 55 outputs = [
55 "$out_dir/$header_file", 56 "$out_dir/$header_file",
56 "$out_dir/$dlldata_file", 57 #"$out_dir/$dlldata_file",
57 "$out_dir/$interface_identifier_file", 58 #"$out_dir/$interface_identifier_file",
58 "$out_dir/$proxy_file", 59 #"$out_dir/$proxy_file",
59 ] 60 ]
60 61
61 if (current_cpu == "x86") { 62 #if (current_cpu == "x86") {
62 win_tool_arch = "environment.x86" 63 # win_tool_arch = "environment.x86"
63 idl_target_platform = "win32" 64 # idl_target_platform = "win32"
64 } else if (current_cpu == "x64") { 65 #} else if (current_cpu == "x64") {
65 win_tool_arch = "environment.x64" 66 # win_tool_arch = "environment.x64"
66 idl_target_platform = "x64" 67 # idl_target_platform = "x64"
67 } else { 68 #} else {
68 assert(false, "Need environment for this arch") 69 # assert(false, "Need environment for this arch")
69 } 70 #}
70 71
71 args = [ 72 args = [
72 "midl-wrapper", 73 #"midl-wrapper",
73 win_tool_arch, 74 #win_tool_arch,
74 rebase_path(out_dir, root_build_dir), 75 #rebase_path(out_dir, root_build_dir),
75 type_library_file, 76 type_library_file,
76 header_file, 77 header_file,
77 dlldata_file, 78 dlldata_file,
78 interface_identifier_file, 79 interface_identifier_file,
79 proxy_file, 80 proxy_file,
80 "{{source}}", 81 #"{{source}}",
81 "/char", 82 #"/char",
82 "signed", 83 #"signed",
83 "/env", 84 #"/env",
84 idl_target_platform, 85 #idl_target_platform,
85 "/Oicf", 86 #"/Oicf",
86 ] 87 ]
87 88
88 forward_variables_from(invoker, [ "deps" ]) 89 forward_variables_from(invoker, [ "deps" ])
89 } 90 }
90 91
91 source_set(target_name) { 92 source_set(target_name) {
92 forward_variables_from(invoker, [ "visibility" ]) 93 forward_variables_from(invoker, [ "visibility" ])
93 94
94 # We only compile the IID files from the IDL tool rather than all outputs. 95 # We only compile the IID files from the IDL tool rather than all outputs.
95 sources = process_file_template(invoker.sources, 96 #sources = process_file_template(invoker.sources,
96 [ "$out_dir/$interface_identifier_file" ]) 97 # [ "$out_dir/$interface_identifier_file" ])
97 98
98 public_deps = [ 99 public_deps = [
99 ":$action_name", 100 ":$action_name",
100 ] 101 ]
101 102
102 configs += [ "//build/config/win:midl_warnings" ] 103 configs += [ "//build/config/win:midl_warnings" ]
103 } 104 }
104 } 105 }
OLDNEW
« no previous file with comments | « build/toolchain/win/BUILD.gn ('k') | build/win/message_compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698