Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: ui/gl/BUILD.gn

Issue 1256613002: Add tracing for GL texture objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@browser_process_id
Patch Set: review feedback Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 "gpu_switching_manager.cc", 95 "gpu_switching_manager.cc",
96 "gpu_switching_manager.h", 96 "gpu_switching_manager.h",
97 "gpu_timing.cc", 97 "gpu_timing.cc",
98 "gpu_timing.h", 98 "gpu_timing.h",
99 "scoped_binders.cc", 99 "scoped_binders.cc",
100 "scoped_binders.h", 100 "scoped_binders.h",
101 "scoped_make_current.cc", 101 "scoped_make_current.cc",
102 "scoped_make_current.h", 102 "scoped_make_current.h",
103 "sync_control_vsync_provider.cc", 103 "sync_control_vsync_provider.cc",
104 "sync_control_vsync_provider.h", 104 "sync_control_vsync_provider.h",
105 "trace_util.cc",
106 "trace_util.h",
reveman 2015/07/28 21:38:49 did you forget to add these files?
ericrk 2015/07/29 18:46:47 yup.
105 ] 107 ]
106 108
107 configs += [ "//build/config:precompiled_headers" ] 109 configs += [ "//build/config:precompiled_headers" ]
108 defines = [ "GL_IMPLEMENTATION" ] 110 defines = [ "GL_IMPLEMENTATION" ]
109 111
110 include_dirs = [ 112 include_dirs = [
111 "//third_party/switfshader/include", 113 "//third_party/switfshader/include",
112 "//third_party/mesa/src/include", 114 "//third_party/mesa/src/include",
113 ] 115 ]
114 116
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 deps = [ 351 deps = [
350 ":surface_jni_headers", 352 ":surface_jni_headers",
351 ] 353 ]
352 sources = [ 354 sources = [
353 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 355 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
354 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 356 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
355 ] 357 ]
356 jni_package = "ui/gl" 358 jni_package = "ui/gl"
357 } 359 }
358 } 360 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698