forked from ocaml/dune
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#3742 from cwong-ocaml/api-split
preliminary rules/engine split
- Loading branch information
Showing
409 changed files
with
517 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
boot/libs.ml | ||
src/dune/assets.ml | ||
src/dune_rules/assets.ml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
(library | ||
(name dune_bench) | ||
(libraries stdune fiber dune) | ||
(libraries stdune fiber dune_engine dune_rules) | ||
(library_flags -linkall) | ||
(preprocess | ||
(pps ppx_bench))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
(* Benchmark the scheduler *) | ||
|
||
open Stdune | ||
open Dune | ||
open Dune_engine | ||
|
||
let setup = | ||
lazy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
open Stdune | ||
|
||
type t = private | ||
{ name : Dune.Alias.Name.t | ||
{ name : Dune_engine.Alias.Name.t | ||
; recursive : bool | ||
; dir : Path.Source.t | ||
; contexts : Dune.Context.t list | ||
; contexts : Dune_rules.Context.t list | ||
} | ||
|
||
val in_dir : | ||
name:Dune.Alias.Name.t | ||
name:Dune_engine.Alias.Name.t | ||
-> recursive:bool | ||
-> contexts:Dune.Context.t list | ||
-> contexts:Dune_rules.Context.t list | ||
-> Path.t | ||
-> t | ||
|
||
val of_string : | ||
Common.t -> recursive:bool -> string -> contexts:Dune.Context.t list -> t | ||
Common.t | ||
-> recursive:bool | ||
-> string | ||
-> contexts:Dune_rules.Context.t list | ||
-> t | ||
|
||
val pp : t -> _ Pp.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.