mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-08 13:14:56 +00:00
Convert all dawn includes to use non-system include syntax.
This CL changes several includes which were using the system include syntax to the local syntax. This causes GN check to verify that the headers are specified correctly in the dependencies. Two missing dependencies are added to the BUILD.gn file for the Dawn tests. Bug: dawn:1373 Change-Id: I7afd5ab48f4f2e2ddaf1839058c6bbeec2b97fd0 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86940 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Auto-Submit: Dan Sinclair <dsinclair@chromium.org>
This commit is contained in:
committed by
Dawn LUCI CQ
parent
9aa4b11281
commit
d0fb4a36ac
@@ -12,7 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include <dawn/{{metadata.api.lower()}}.h>
|
||||
#include "dawn/{{metadata.api.lower()}}.h"
|
||||
|
||||
namespace dawn::native {
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#ifndef DAWNWIRE_WIRECMD_AUTOGEN_H_
|
||||
#define DAWNWIRE_WIRECMD_AUTOGEN_H_
|
||||
|
||||
#include <dawn/webgpu.h>
|
||||
#include "dawn/webgpu.h"
|
||||
|
||||
#include "dawn/wire/BufferConsumer.h"
|
||||
#include "dawn/wire/ObjectType_autogen.h"
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
|
||||
{% set Prefix = metadata.proc_table_prefix %}
|
||||
{% set prefix = Prefix.lower() %}
|
||||
#include <dawn/{{prefix}}_proc_table.h>
|
||||
#include <dawn/{{api}}.h>
|
||||
#include "dawn/{{prefix}}_proc_table.h"
|
||||
#include "dawn/{{api}}.h"
|
||||
#include <gmock/gmock.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
Reference in New Issue
Block a user