| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 "rand_util.cc", | 464 "rand_util.cc", |
| 465 "rand_util.h", | 465 "rand_util.h", |
| 466 "rand_util_nacl.cc", | 466 "rand_util_nacl.cc", |
| 467 "rand_util_posix.cc", | 467 "rand_util_posix.cc", |
| 468 "rand_util_win.cc", | 468 "rand_util_win.cc", |
| 469 "run_loop.cc", | 469 "run_loop.cc", |
| 470 "run_loop.h", | 470 "run_loop.h", |
| 471 "safe_numerics.h", | 471 "safe_numerics.h", |
| 472 "safe_strerror_posix.cc", | 472 "safe_strerror_posix.cc", |
| 473 "safe_strerror_posix.h", | 473 "safe_strerror_posix.h", |
| 474 "scoped_nullable_generic.h", |
| 474 "scoped_native_library.cc", | 475 "scoped_native_library.cc", |
| 475 "scoped_native_library.h", | 476 "scoped_native_library.h", |
| 476 "sequence_checker.h", | 477 "sequence_checker.h", |
| 477 "sequence_checker_impl.cc", | 478 "sequence_checker_impl.cc", |
| 478 "sequence_checker_impl.h", | 479 "sequence_checker_impl.h", |
| 479 "sequenced_task_runner.cc", | 480 "sequenced_task_runner.cc", |
| 480 "sequenced_task_runner.h", | 481 "sequenced_task_runner.h", |
| 481 "sequenced_task_runner_helpers.h", | 482 "sequenced_task_runner_helpers.h", |
| 482 "sha1.h", | 483 "sha1.h", |
| 483 "sha1_portable.cc", | 484 "sha1_portable.cc", |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 900 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 900 # 'msvs_disabled_warnings': [ | 901 # 'msvs_disabled_warnings': [ |
| 901 # 4267, | 902 # 4267, |
| 902 # ], | 903 # ], |
| 903 # }], | 904 # }], |
| 904 #], | 905 #], |
| 905 #'variables': { | 906 #'variables': { |
| 906 # 'optimize': 'max', | 907 # 'optimize': 'max', |
| 907 #}, | 908 #}, |
| 908 } | 909 } |
| OLD | NEW |