| 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 # This file is gn GN version of modules.gypi. | 5 # This file is gn GN version of modules.gypi. |
| 6 | 6 |
| 7 blink_modules_output_dir = "$root_gen_dir/blink/modules" | 7 blink_modules_output_dir = "$root_gen_dir/blink/modules" |
| 8 | 8 |
| 9 _gypi = exec_script( | 9 _gypi = exec_script( |
| 10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "<@(generated_modules_files)", | 48 "<@(generated_modules_files)", |
| 49 ] | 49 ] |
| 50 modules_files = get_path_info(_tmp_modules_files, "abspath") | 50 modules_files = get_path_info(_tmp_modules_files, "abspath") |
| 51 | 51 |
| 52 # Account for GYP var expansion. | 52 # Account for GYP var expansion. |
| 53 modules_files += generated_modules_files + generated_modules_dictionary_files | 53 modules_files += generated_modules_files + generated_modules_dictionary_files |
| 54 | 54 |
| 55 # 'partial interface' or target (right side of) 'implements' | 55 # 'partial interface' or target (right side of) 'implements' |
| 56 modules_testing_dependency_idl_files = | 56 modules_testing_dependency_idl_files = |
| 57 get_path_info(_gypi.modules_testing_dependency_idl_files, "abspath") | 57 get_path_info(_gypi.modules_testing_dependency_idl_files, "abspath") |
| 58 | |
| 59 modules_testing_files = get_path_info(_gypi.modules_testing_files, "abspath") | |
| 60 modules_unittest_files = get_path_info(_gypi.modules_unittest_files, "abspath") | |
| OLD | NEW |