| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "files/file_path_watcher_stub.cc", | 173 "files/file_path_watcher_stub.cc", |
| 174 "files/file_path_watcher_win.cc", | 174 "files/file_path_watcher_win.cc", |
| 175 "files/file_util_proxy.cc", | 175 "files/file_util_proxy.cc", |
| 176 "files/file_util_proxy.h", | 176 "files/file_util_proxy.h", |
| 177 "files/important_file_writer.cc", | 177 "files/important_file_writer.cc", |
| 178 "files/important_file_writer.h", | 178 "files/important_file_writer.h", |
| 179 "files/memory_mapped_file.cc", | 179 "files/memory_mapped_file.cc", |
| 180 "files/memory_mapped_file.h", | 180 "files/memory_mapped_file.h", |
| 181 "files/memory_mapped_file_posix.cc", | 181 "files/memory_mapped_file_posix.cc", |
| 182 "files/memory_mapped_file_win.cc", | 182 "files/memory_mapped_file_win.cc", |
| 183 "files/scoped_file.cc", | |
| 184 "files/scoped_file.h", | |
| 185 "files/scoped_temp_dir.cc", | 183 "files/scoped_temp_dir.cc", |
| 186 "files/scoped_temp_dir.h", | 184 "files/scoped_temp_dir.h", |
| 187 "float_util.h", | 185 "float_util.h", |
| 188 "format_macros.h", | 186 "format_macros.h", |
| 189 "gtest_prod_util.h", | 187 "gtest_prod_util.h", |
| 190 "guid.cc", | 188 "guid.cc", |
| 191 "guid.h", | 189 "guid.h", |
| 192 "guid_posix.cc", | 190 "guid_posix.cc", |
| 193 "guid_win.cc", | 191 "guid_win.cc", |
| 194 "hash.cc", | 192 "hash.cc", |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 900 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 903 # 'msvs_disabled_warnings': [ | 901 # 'msvs_disabled_warnings': [ |
| 904 # 4267, | 902 # 4267, |
| 905 # ], | 903 # ], |
| 906 # }], | 904 # }], |
| 907 #], | 905 #], |
| 908 #'variables': { | 906 #'variables': { |
| 909 # 'optimize': 'max', | 907 # 'optimize': 'max', |
| 910 #}, | 908 #}, |
| 911 } | 909 } |
| OLD | NEW |