Lines Matching full:database
19 # Updates a tokenized string database in the source tree with artifacts from one
20 # or more targets. Other database files may also be used.
22 # The database file must exist. A CSV or binary database can be created with the
23 # pw/pw_tokenizer/database.py tool. An empty CSV database file can be also
27 # database: if updating a database, path to an existing database in the source
28 # tree; optional if creating a database, but may provide an output
31 # create: if specified, create a database instead of updating one; 'create'
32 # must be set to one of the supported database types: "csv" or "binary"
41 # input_databases: paths to other database files from which to add tokens
42 # deps: GN targets to build prior to generating the database; artifacts from
43 # these targets are NOT implicitly used for database generation
48 assert(defined(invoker.database) || defined(invoker.create),
49 "pw_tokenizer_database requires a 'database' variable, unless " +
60 if (defined(invoker.database)) {
61 _database = invoker.database
95 script = "$dir_pw_tokenizer/py/pw_tokenizer/database.py"
100 # Restrict parallelism for updating this database file to one thread. This
102 pool = "$dir_pw_tokenizer/pool:database($default_toolchain)"
123 "--database",