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

Side by Side Diff: cc/cc.gyp

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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 'resources/single_release_callback_impl.cc', 480 'resources/single_release_callback_impl.cc',
481 'resources/single_release_callback_impl.h', 481 'resources/single_release_callback_impl.h',
482 'resources/skpicture_content_layer_updater.cc', 482 'resources/skpicture_content_layer_updater.cc',
483 'resources/skpicture_content_layer_updater.h', 483 'resources/skpicture_content_layer_updater.h',
484 'resources/task_graph_runner.cc', 484 'resources/task_graph_runner.cc',
485 'resources/task_graph_runner.h', 485 'resources/task_graph_runner.h',
486 'resources/texture_compressor.cc', 486 'resources/texture_compressor.cc',
487 'resources/texture_compressor.h', 487 'resources/texture_compressor.h',
488 'resources/texture_compressor_etc1.cc', 488 'resources/texture_compressor_etc1.cc',
489 'resources/texture_compressor_etc1.h', 489 'resources/texture_compressor_etc1.h',
490 'resources/texture_compressor_etc1_sse.cc',
robert.bradford 2015/04/17 16:20:08 These files need to be conditional on the arch.
491 'resources/texture_compressor_etc1_sse.h',
490 'resources/texture_mailbox.cc', 492 'resources/texture_mailbox.cc',
491 'resources/texture_mailbox.h', 493 'resources/texture_mailbox.h',
492 'resources/texture_mailbox_deleter.cc', 494 'resources/texture_mailbox_deleter.cc',
493 'resources/texture_mailbox_deleter.h', 495 'resources/texture_mailbox_deleter.h',
494 'resources/texture_uploader.cc', 496 'resources/texture_uploader.cc',
495 'resources/texture_uploader.h', 497 'resources/texture_uploader.h',
496 'resources/tile.cc', 498 'resources/tile.cc',
497 'resources/tile.h', 499 'resources/tile.h',
498 'resources/tile_draw_info.cc', 500 'resources/tile_draw_info.cc',
499 'resources/tile_draw_info.h', 501 'resources/tile_draw_info.h',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 'surfaces/surface_resource_holder.cc', 627 'surfaces/surface_resource_holder.cc',
626 'surfaces/surface_resource_holder.h', 628 'surfaces/surface_resource_holder.h',
627 'surfaces/surfaces_export.h', 629 'surfaces/surfaces_export.h',
628 ], 630 ],
629 'includes': [ 631 'includes': [
630 '../build/android/increase_size_for_speed.gypi', 632 '../build/android/increase_size_for_speed.gypi',
631 ], 633 ],
632 }, 634 },
633 ], 635 ],
634 } 636 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698