| 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/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
| 6 | 6 |
| 7 # If using the prebuilt shell, gate its usage by the platforms for which it is | 7 # If using the prebuilt shell, gate its usage by the platforms for which it is |
| 8 # published. | 8 # published. |
| 9 mojo_use_prebuilt_mojo_shell = false | 9 mojo_use_prebuilt_mojo_shell = false |
| 10 if (!defined(mojo_build_mojo_shell_from_source) || | 10 if (!defined(mojo_build_mojo_shell_from_source) || |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 if (defined(mojo_disable_dart_apptest_framework) && | 25 if (defined(mojo_disable_dart_apptest_framework) && |
| 26 mojo_disable_dart_apptest_framework) { | 26 mojo_disable_dart_apptest_framework) { |
| 27 mojo_use_dart_apptest_framework = false | 27 mojo_use_dart_apptest_framework = false |
| 28 } | 28 } |
| 29 | 29 |
| 30 # The absolute path to the directory containing the mojo public SDK (i.e., the | 30 # The absolute path to the directory containing the mojo public SDK (i.e., the |
| 31 # directory containing mojo/public). The build files within the Mojo public | 31 # directory containing mojo/public). The build files within the Mojo public |
| 32 # SDK use this variable to allow themselves to be parameterized by the location | 32 # SDK use this variable to allow themselves to be parameterized by the location |
| 33 # of the public SDK within a client repo. | 33 # of the public SDK within a client repo. |
| 34 mojo_root = get_path_info("../..", "abspath") | 34 mojo_root = get_path_info("../..", "abspath") |
| OLD | NEW |