Chromium Code Reviews| Index: scripts/slave/README.recipes.md |
| diff --git a/scripts/slave/README.recipes.md b/scripts/slave/README.recipes.md |
| index dbab2e21ce80af5de8ad51cb4984a417561864d3..ace43b8161633c64f2bc7a0387807a77eff25b3c 100644 |
| --- a/scripts/slave/README.recipes.md |
| +++ b/scripts/slave/README.recipes.md |
| @@ -350,7 +350,7 @@ Next, we get to the `config_ctx`. This is the 'context' for all the config |
| items in this file, and will become the `CONFIG_CTX` for the entire module. |
| Other modules may add into this config context (for example, they could have |
| a `hello_config.py` file, which imports this config context like |
| -`from RECIPE_MODULES.hello import CONFIG_CTX`. This will be useful for |
| +`CONFIG_CTX = DEPS['hello'].CONFIG_CTX`. This will be useful for |
|
iannucci
2015/05/05 23:35:58
import DEPS
CONFIG_CTX = DEPS['hello'].CONFIG_CTX
luqui
2015/05/06 22:18:39
Done.
|
| separation of concerns with the `set_config()` method.). The string format |
| argument that `config_item_context` takes will be used to format the test case |
| names and test expectation file names. Not terribly useful here, but it can be |