306d54f768
The build with gcc is currently broken, therefor I added a clang build option that is enabled by default for now. The following system libraries are now used: * fontconfig * freetype * harfbuzz-ng * opus * re2 Removed the `use_gconf` gn option because it doesn't exist anymore. Closes #12807
21 lines
619 B
Diff
21 lines
619 B
Diff
From 0235c2b657d936f3cdb09053776e5929fc84704b Mon Sep 17 00:00:00 2001
|
|
From: Tomas Popela <tomas.popela@gmail.com>
|
|
Date: Wed, 31 Jan 2018 18:57:07 +0000
|
|
Subject: [PATCH] Add missing stdint include
|
|
|
|
diff --git a/chrome/browser/vr/sample_queue.cc b/chrome/browser/vr/sample_queue.cc
|
|
index c2ca777ce90c..53cb3aab1576 100644
|
|
--- chrome/browser/vr/sample_queue.cc
|
|
+++ chrome/browser/vr/sample_queue.cc
|
|
@@ -2,6 +2,8 @@
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
+#include <stdint.h>
|
|
+
|
|
#include "chrome/browser/vr/sample_queue.h"
|
|
|
|
namespace vr {
|
|
--
|
|
2.16.2
|
|
|