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

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/BUILD.gn

Issue 2367303002: [Bindings] Remove a redundant option write-file-if-only-changed in bindings (Closed)
Patch Set: Rebase Created 4 years, 2 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
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 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 5 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
7 import("//third_party/WebKit/Source/modules/modules.gni") 7 import("//third_party/WebKit/Source/modules/modules.gni")
8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") 8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni")
9 9
10 visibility = [ "//third_party/WebKit/*" ] 10 visibility = [ "//third_party/WebKit/*" ]
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 # Put the IDL file list in a response file to avoid command-line limits. 54 # Put the IDL file list in a response file to avoid command-line limits.
55 response_file_contents = 55 response_file_contents =
56 rebase_path(core_idl_with_modules_dependency_files, root_build_dir) 56 rebase_path(core_idl_with_modules_dependency_files, root_build_dir)
57 57
58 args = [ 58 args = [
59 "--idl-files-list", 59 "--idl-files-list",
60 "{{response_file_name}}", 60 "{{response_file_name}}",
61 "--output", 61 "--output",
62 rebase_path(bindings_modules_generated_init_partial_interfaces_file, 62 rebase_path(bindings_modules_generated_init_partial_interfaces_file,
63 root_build_dir), 63 root_build_dir),
64 "--write-file-only-if-changed=1",
65 ] 64 ]
66 65
67 deps = [ 66 deps = [
68 "//third_party/WebKit/Source/bindings/modules:interfaces_info", 67 "//third_party/WebKit/Source/bindings/modules:interfaces_info",
69 ] 68 ]
70 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698