c77c64e863
This reverts commit 0e0bd52f773b7e06fa9237154110d9963d5aea03. Reason for revert: The dragdrop data provider needs to be upstreamed from port CL before this will build. Original change's description: > Modify GN feature args for Fuchsia. > > Turn off some features when is_fuchsia=true. The features may be > re-added in the future as progress continues on the Chromium port > and the OS itself. > > It's necessary for bringing headless_shell to a buildable state. > > > R: scottmg@chromium.org,thakis@chromium.org > Bug: 750917 > Change-Id: I7011dfa559474d7eacce9482ae02c3330d113e94 > Reviewed-on: https://chromium-review.googlesource.com/596621 > Commit-Queue: Kevin Marshall <kmarshall@chromium.org> > Reviewed-by: Scott Graham <scottmg@chromium.org> > Reviewed-by: Dale Curtis <dalecurtis@chromium.org> > Reviewed-by: Lei Zhang <thestig@chromium.org> > Reviewed-by: Bill Budge <bbudge@chromium.org> > Reviewed-by: Alexander Timin <altimin@chromium.org> > Reviewed-by: Sami Kyöstilä <skyostil@chromium.org> > Cr-Commit-Position: refs/heads/master@{#492531} TBR=bbudge@chromium.org,dalecurtis@chromium.org,thakis@chromium.org,thestig@chromium.org,kmarshall@chromium.org,skyostil@chromium.org,scottmg@chromium.org,altimin@chromium.org Change-Id: I0c7ac7b55bf18127cc2ad52c90b1b9f301900def No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 750917 Reviewed-on: https://chromium-review.googlesource.com/606747 Reviewed-by: Kevin Marshall <kmarshall@chromium.org> Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Cr-Original-Commit-Position: refs/heads/master@{#492689} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: f423b4deb515f78c7868ec4b39c091cd28b669dd |
||
---|---|---|
.. | ||
OWNERS | ||
README.txt | ||
fuchsia.gn | ||
headless.gn |
README.txt
This directory is here to hold .gni files that contain sets of GN build arguments for given configurations. (Currently this directory is empty because we removed the only thing here, but this has come up several times so I'm confident we'll need this again. If this directory is still empty by 2017, feel free to delete it. --Brett) Some projects or bots may have build configurations with specific combinations of flags. Rather than making a new global flag for your specific project and adding it all over the build to each arg it should affect, you can add a .gni file here with the variables. For example, for project foo you may put in build/args/foo.gni: target_os = "android" use_pulseaudio = false use_ozone = true system_libdir = "foo" Users wanting to build this configuration would run: $ gn args out/mybuild And add the following line to their args for that build directory: import("//build/args/foo.gni") # You can set any other args here like normal. is_component_build = false This way everybody can agree on a set of flags for a project, and their builds stay in sync as the flags in foo.gni are modified.