| 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 sources = [ | 8 sources = [ |
| 9 "third_party/dmg_fp/dmg_fp.h", | 9 "third_party/dmg_fp/dmg_fp.h", |
| 10 "third_party/dmg_fp/g_fmt.cc", | 10 "third_party/dmg_fp/g_fmt.cc", |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 "process/kill.h", | 417 "process/kill.h", |
| 418 "process/kill_mac.cc", | 418 "process/kill_mac.cc", |
| 419 "process/kill_posix.cc", | 419 "process/kill_posix.cc", |
| 420 "process/kill_win.cc", | 420 "process/kill_win.cc", |
| 421 "process/launch.cc", | 421 "process/launch.cc", |
| 422 "process/launch.h", | 422 "process/launch.h", |
| 423 "process/launch_ios.cc", | 423 "process/launch_ios.cc", |
| 424 "process/launch_mac.cc", | 424 "process/launch_mac.cc", |
| 425 "process/launch_posix.cc", | 425 "process/launch_posix.cc", |
| 426 "process/launch_win.cc", | 426 "process/launch_win.cc", |
| 427 "process/memory.cc", |
| 427 "process/memory.h", | 428 "process/memory.h", |
| 428 "process/memory_linux.cc", | 429 "process/memory_linux.cc", |
| 429 "process/memory_mac.mm", | 430 "process/memory_mac.mm", |
| 430 "process/memory_win.cc", | 431 "process/memory_win.cc", |
| 431 "process/process.h", | 432 "process/process.h", |
| 432 "process/process_handle_freebsd.cc", | 433 "process/process_handle_freebsd.cc", |
| 433 "process/process_handle_linux.cc", | 434 "process/process_handle_linux.cc", |
| 434 "process/process_handle_mac.cc", | 435 "process/process_handle_mac.cc", |
| 435 "process/process_handle_openbsd.cc", | 436 "process/process_handle_openbsd.cc", |
| 436 "process/process_handle_posix.cc", | 437 "process/process_handle_posix.cc", |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 899 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 899 # 'msvs_disabled_warnings': [ | 900 # 'msvs_disabled_warnings': [ |
| 900 # 4267, | 901 # 4267, |
| 901 # ], | 902 # ], |
| 902 # }], | 903 # }], |
| 903 #], | 904 #], |
| 904 #'variables': { | 905 #'variables': { |
| 905 # 'optimize': 'max', | 906 # 'optimize': 'max', |
| 906 #}, | 907 #}, |
| 907 } | 908 } |
| OLD | NEW |