| 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("//sky/engine/bindings/bindings.gni") | 5 import("//sky/engine/bindings/bindings.gni") |
| 6 | 6 |
| 7 # Global constructors | 7 # Global constructors |
| 8 # FIXME: Split into core vs. modules http://crbug.com/358074 | 8 # FIXME: Split into core vs. modules http://crbug.com/358074 |
| 9 generated_global_constructors_idl_files = [ | 9 generated_global_constructors_idl_files = |
| 10 "$sky_output_dir/WindowConstructors.idl", | 10 [ "$sky_output_dir/WindowConstructors.idl" ] |
| 11 ] | |
| 12 | 11 |
| 13 generated_global_constructors_header_files = [ | 12 generated_global_constructors_header_files = |
| 14 "$sky_output_dir/WindowConstructors.h", | 13 [ "$sky_output_dir/WindowConstructors.h" ] |
| 15 ] | |
| OLD | NEW |