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

Side by Side Diff: ppapi/shared_impl/BUILD.gn

Issue 1345813002: Added a unique command buffer ID for command buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests Created 5 years, 3 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 component("shared_impl") { 5 component("shared_impl") {
6 output_name = "ppapi_shared" 6 output_name = "ppapi_shared"
7 7
8 sources = [ 8 sources = [
9 "array_var.cc", 9 "array_var.cc",
10 "array_var.h", 10 "array_var.h",
11 "array_writer.cc", 11 "array_writer.cc",
12 "array_writer.h", 12 "array_writer.h",
13 "callback_tracker.cc", 13 "callback_tracker.cc",
14 "callback_tracker.h", 14 "callback_tracker.h",
15 "command_buffer_id_pair.cc",
16 "command_buffer_id_pair.h",
15 "compositor_layer_data.cc", 17 "compositor_layer_data.cc",
16 "compositor_layer_data.h", 18 "compositor_layer_data.h",
17 "dictionary_var.cc", 19 "dictionary_var.cc",
18 "dictionary_var.h", 20 "dictionary_var.h",
19 "file_growth.cc", 21 "file_growth.cc",
20 "file_growth.h", 22 "file_growth.h",
21 "file_io_state_manager.cc", 23 "file_io_state_manager.cc",
22 "file_io_state_manager.h", 24 "file_io_state_manager.h",
23 "file_path.cc", 25 "file_path.cc",
24 "file_path.h", 26 "file_path.h",
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 deps = [ 203 deps = [
202 "//base/test:test_support", 204 "//base/test:test_support",
203 "//ipc", 205 "//ipc",
204 "//ipc:test_support", 206 "//ipc:test_support",
205 "//ppapi/proxy", 207 "//ppapi/proxy",
206 "//ppapi/shared_impl", 208 "//ppapi/shared_impl",
207 "//testing/gmock", 209 "//testing/gmock",
208 "//testing/gtest", 210 "//testing/gtest",
209 ] 211 ]
210 } 212 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698