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 the GN version of blink_platform.gypi. We rebase most paths to | 5 # This file is the GN version of blink_platform.gypi. We rebase most paths to |
6 # be absolute so these lists can be used by BUILD files in different directories | 6 # be absolute so these lists can be used by BUILD files in different directories |
7 # without worrying about the base directory. | 7 # without worrying about the base directory. |
8 _gypi = exec_script( | 8 _gypi = exec_script("//build/gypi_to_gn.py", |
9 "//build/gypi_to_gn.py", | 9 [ rebase_path("blink_platform.gypi") ], |
10 [ rebase_path("blink_platform.gypi") ], | 10 "scope", |
11 "scope", | 11 [ "blink_platform.gypi" ]) |
12 [ "blink_platform.gypi" ]) | |
13 | 12 |
14 platform_files = _gypi.platform_files | 13 platform_files = _gypi.platform_files |
15 platform_test_files = get_path_info(_gypi.platform_test_files, "abspath") | 14 platform_test_files = get_path_info(_gypi.platform_test_files, "abspath") |
16 platform_unittest_support_files = get_path_info(_gypi.platform_unittest_support_
files, "abspath") | 15 platform_unittest_support_files = |
17 platform_web_unittest_files = get_path_info(_gypi.platform_web_unittest_files, "
abspath") | 16 get_path_info(_gypi.platform_unittest_support_files, "abspath") |
18 platform_test_support_files = get_path_info(_gypi.platform_test_support_files, "
abspath") | 17 platform_web_unittest_files = |
| 18 get_path_info(_gypi.platform_web_unittest_files, "abspath") |
| 19 platform_test_support_files = |
| 20 get_path_info(_gypi.platform_test_support_files, "abspath") |
OLD | NEW |