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

Side by Side Diff: cc/BUILD.gn

Issue 1096703002: Reland: Add ETC1 powered SSE encoder for tile texture compression (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Instantiating new class based on CPU; removing SSE4.1 functions and falling back to SSE2 Created 5 years, 8 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
« no previous file with comments | « AUTHORS ('k') | cc/cc.gyp » ('j') | cc/cc.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 "resources/single_release_callback_impl.cc", 425 "resources/single_release_callback_impl.cc",
426 "resources/single_release_callback_impl.h", 426 "resources/single_release_callback_impl.h",
427 "resources/skpicture_content_layer_updater.cc", 427 "resources/skpicture_content_layer_updater.cc",
428 "resources/skpicture_content_layer_updater.h", 428 "resources/skpicture_content_layer_updater.h",
429 "resources/task_graph_runner.cc", 429 "resources/task_graph_runner.cc",
430 "resources/task_graph_runner.h", 430 "resources/task_graph_runner.h",
431 "resources/texture_compressor.cc", 431 "resources/texture_compressor.cc",
432 "resources/texture_compressor.h", 432 "resources/texture_compressor.h",
433 "resources/texture_compressor_etc1.cc", 433 "resources/texture_compressor_etc1.cc",
434 "resources/texture_compressor_etc1.h", 434 "resources/texture_compressor_etc1.h",
435 "resources/texture_compressor_etc1_sse.cc",
436 "resources/texture_compressor_etc1_sse.h",
435 "resources/texture_mailbox.cc", 437 "resources/texture_mailbox.cc",
436 "resources/texture_mailbox.h", 438 "resources/texture_mailbox.h",
437 "resources/texture_mailbox_deleter.cc", 439 "resources/texture_mailbox_deleter.cc",
438 "resources/texture_mailbox_deleter.h", 440 "resources/texture_mailbox_deleter.h",
439 "resources/texture_uploader.cc", 441 "resources/texture_uploader.cc",
440 "resources/texture_uploader.h", 442 "resources/texture_uploader.h",
441 "resources/tile.cc", 443 "resources/tile.cc",
442 "resources/tile.h", 444 "resources/tile.h",
443 "resources/tile_draw_info.cc", 445 "resources/tile_draw_info.cc",
444 "resources/tile_draw_info.h", 446 "resources/tile_draw_info.h",
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 "//testing/gmock", 918 "//testing/gmock",
917 "//testing/gtest", 919 "//testing/gtest",
918 "//testing/perf", 920 "//testing/perf",
919 "//ui/gfx", 921 "//ui/gfx",
920 "//ui/gfx/geometry", 922 "//ui/gfx/geometry",
921 "//ui/gl", 923 "//ui/gl",
922 ] 924 ]
923 } 925 }
924 # When adding support for isolates, please have a look at run-time dependencies 926 # When adding support for isolates, please have a look at run-time dependencies
925 # in the cc_unittests_run target in cc_tests.gyp. 927 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « AUTHORS ('k') | cc/cc.gyp » ('j') | cc/cc.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698