| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 | 6 |
| 7 component("base") { | 7 component("base") { |
| 8 external = true | 8 external = true |
| 9 sources = [ | 9 sources = [ |
| 10 "../build/build_config.h", | 10 "../build/build_config.h", |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 "win/scoped_process_information.cc", | 664 "win/scoped_process_information.cc", |
| 665 "win/scoped_process_information.h", | 665 "win/scoped_process_information.h", |
| 666 "win/scoped_propvariant.h", | 666 "win/scoped_propvariant.h", |
| 667 "win/scoped_select_object.h", | 667 "win/scoped_select_object.h", |
| 668 "win/scoped_variant.cc", | 668 "win/scoped_variant.cc", |
| 669 "win/scoped_variant.h", | 669 "win/scoped_variant.h", |
| 670 "win/shortcut.cc", | 670 "win/shortcut.cc", |
| 671 "win/shortcut.h", | 671 "win/shortcut.h", |
| 672 "win/startup_information.cc", | 672 "win/startup_information.cc", |
| 673 "win/startup_information.h", | 673 "win/startup_information.h", |
| 674 "win/text_services_message_filter.cc", | |
| 675 "win/text_services_message_filter.h", | |
| 676 "win/win_util.cc", | 674 "win/win_util.cc", |
| 677 "win/win_util.h", | 675 "win/win_util.h", |
| 678 "win/windows_version.cc", | 676 "win/windows_version.cc", |
| 679 "win/windows_version.h", | 677 "win/windows_version.h", |
| 680 "win/wrapped_window_proc.cc", | 678 "win/wrapped_window_proc.cc", |
| 681 "win/wrapped_window_proc.h", | 679 "win/wrapped_window_proc.h", |
| 682 ] | 680 ] |
| 683 | 681 |
| 684 # TODO(brettw) I don't understand the conditions this file is used. | 682 # TODO(brettw) I don't understand the conditions this file is used. |
| 685 sources -= [ "files/file_path_watcher_stub.cc" ] | 683 sources -= [ "files/file_path_watcher_stub.cc" ] |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 897 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 900 # 'msvs_disabled_warnings': [ | 898 # 'msvs_disabled_warnings': [ |
| 901 # 4267, | 899 # 4267, |
| 902 # ], | 900 # ], |
| 903 # }], | 901 # }], |
| 904 #], | 902 #], |
| 905 #'variables': { | 903 #'variables': { |
| 906 # 'optimize': 'max', | 904 # 'optimize': 'max', |
| 907 #}, | 905 #}, |
| 908 } | 906 } |
| OLD | NEW |