Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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', | |
| 491 'resources/texture_compressor_etc1_sse.h', | |
|
robert.bradford
2015/04/17 14:04:47
You also need to add entries to the BUILD.gn file
radu.velea
2015/04/17 16:02:32
Done.
radu.velea
2015/04/17 16:02:32
Done.
| |
| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 572 'trees/scoped_abort_remaining_swap_promises.h', | 574 'trees/scoped_abort_remaining_swap_promises.h', |
| 573 'trees/single_thread_proxy.cc', | 575 'trees/single_thread_proxy.cc', |
| 574 'trees/single_thread_proxy.h', | 576 'trees/single_thread_proxy.h', |
| 575 'trees/swap_promise_monitor.cc', | 577 'trees/swap_promise_monitor.cc', |
| 576 'trees/swap_promise_monitor.h', | 578 'trees/swap_promise_monitor.h', |
| 577 'trees/thread_proxy.cc', | 579 'trees/thread_proxy.cc', |
| 578 'trees/thread_proxy.h', | 580 'trees/thread_proxy.h', |
| 579 'trees/tree_synchronizer.cc', | 581 'trees/tree_synchronizer.cc', |
| 580 'trees/tree_synchronizer.h', | 582 'trees/tree_synchronizer.h', |
| 581 ], | 583 ], |
| 584 'cflags': [ | |
| 585 '-msse4.1', | |
|
robert.bradford
2015/04/17 14:04:47
You can't do this as this allows the compiler to u
radu.velea
2015/04/17 16:02:32
Done.
| |
| 586 ], | |
| 582 'includes': [ | 587 'includes': [ |
| 583 '../build/android/increase_size_for_speed.gypi', | 588 '../build/android/increase_size_for_speed.gypi', |
| 584 ], | 589 ], |
| 585 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 590 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 586 'msvs_disabled_warnings': [ 4267, ], | 591 'msvs_disabled_warnings': [ 4267, ], |
| 587 }, | 592 }, |
| 588 { | 593 { |
| 589 # GN version: //cc/surfaces | 594 # GN version: //cc/surfaces |
| 590 'target_name': 'cc_surfaces', | 595 'target_name': 'cc_surfaces', |
| 591 'type': '<(component)', | 596 'type': '<(component)', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 625 'surfaces/surface_resource_holder.cc', | 630 'surfaces/surface_resource_holder.cc', |
| 626 'surfaces/surface_resource_holder.h', | 631 'surfaces/surface_resource_holder.h', |
| 627 'surfaces/surfaces_export.h', | 632 'surfaces/surfaces_export.h', |
| 628 ], | 633 ], |
| 629 'includes': [ | 634 'includes': [ |
| 630 '../build/android/increase_size_for_speed.gypi', | 635 '../build/android/increase_size_for_speed.gypi', |
| 631 ], | 636 ], |
| 632 }, | 637 }, |
| 633 ], | 638 ], |
| 634 } | 639 } |
| OLD | NEW |