| OLD | NEW |
| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 7 import("//third_party/WebKit/Source/config.gni") | 7 import("//third_party/WebKit/Source/config.gni") |
| 8 | 8 |
| 9 platform_gypi = exec_script( | 9 platform_gypi = exec_script( |
| 10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 runtime_enabled_features_in = "RuntimeEnabledFeatures.in" | 100 runtime_enabled_features_in = "RuntimeEnabledFeatures.in" |
| 101 source_prereqs = scripts_for_in_files + [ | 101 source_prereqs = scripts_for_in_files + [ |
| 102 runtime_enabled_features_in, | 102 runtime_enabled_features_in, |
| 103 "../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl", | 103 "../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl", |
| 104 "../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl", | 104 "../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl", |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 output_path = "$root_gen_dir/blink" | 107 output_path = "$root_gen_dir/blink" |
| 108 outputs = [ | 108 outputs = [ |
| 109 "$output_path/RuntimeEnabledFeatures.cpp", | 109 "$output_path/RuntimeEnabledFeatures.cpp", |
| 110 "$output_path/blink/RuntimeEnabledFeatures.h", | 110 "$output_path/RuntimeEnabledFeatures.h", |
| 111 ] | 111 ] |
| 112 | 112 |
| 113 args = [ | 113 args = [ |
| 114 rebase_path(runtime_enabled_features_in, root_build_dir), | 114 rebase_path(runtime_enabled_features_in, root_build_dir), |
| 115 "--output_dir", | 115 "--output_dir", |
| 116 rebase_path(output_path, root_build_dir), | 116 rebase_path(output_path, root_build_dir), |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 action("color_data") { | 120 action("color_data") { |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 | 338 |
| 339 deps = [ ":blink_common" ] | 339 deps = [ ":blink_common" ] |
| 340 } | 340 } |
| 341 } | 341 } |
| 342 | 342 |
| 343 # This config is a placeholder to set up the V8 include path while the V8 GN | 343 # This config is a placeholder to set up the V8 include path while the V8 GN |
| 344 # build is being worked on. | 344 # build is being worked on. |
| 345 config("v8_stub_config") { | 345 config("v8_stub_config") { |
| 346 include_dirs = [ "//v8/include" ] | 346 include_dirs = [ "//v8/include" ] |
| 347 } | 347 } |
| OLD | NEW |