diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-15 19:39:14 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-15 19:39:14 +0000 |
commit | e2504c8bddb98698b98013acaba4724aaff72b56 (patch) | |
tree | 072942c8cdd2bc63a526902f7b108d01715adbf0 /gpu/command_buffer | |
parent | 89ded531c2f2aef5577c22a9267ead1a9035d722 (diff) | |
download | chromium_src-e2504c8bddb98698b98013acaba4724aaff72b56.zip chromium_src-e2504c8bddb98698b98013acaba4724aaff72b56.tar.gz chromium_src-e2504c8bddb98698b98013acaba4724aaff72b56.tar.bz2 |
Add GN build for parts of gpu and ozone.
Moves existing ozone platform flag to new .gni file with all ozone flags in it.
R=piman@chromium.org, rjkroege@chromium.org, spang@chromium.org
Review URL: https://codereview.chromium.org/285103002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270780 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer')
-rw-r--r-- | gpu/command_buffer/BUILD.gn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gpu/command_buffer/BUILD.gn b/gpu/command_buffer/BUILD.gn new file mode 100644 index 0000000..c37e90f --- /dev/null +++ b/gpu/command_buffer/BUILD.gn @@ -0,0 +1,17 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +component("gles2_utils") { + sources = [ + "common/gles2_cmd_format.h", + "common/gles2_cmd_utils.cc", + "common/gles2_cmd_utils.h", + "common/gles2_utils_export.h", + ] + + defines = [ "GLES2_UTILS_IMPLEMENTATION" ] + all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] + deps = [ "//base" ] +} + |