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 config("base_libs") { | 5 config("base_libs") { |
6 if (!is_win) { | 6 if (!is_win) { |
7 ldflags = [ "-ldl" ] | 7 ldflags = [ "-ldl" ] |
8 } | 8 } |
9 } | 9 } |
10 | 10 |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 "message_loop/message_pump_io_ios.h", | 314 "message_loop/message_pump_io_ios.h", |
315 "message_loop/message_pump_libevent.cc", | 315 "message_loop/message_pump_libevent.cc", |
316 "message_loop/message_pump_libevent.h", | 316 "message_loop/message_pump_libevent.h", |
317 "message_loop/message_pump_mac.h", | 317 "message_loop/message_pump_mac.h", |
318 "message_loop/message_pump_mac.mm", | 318 "message_loop/message_pump_mac.mm", |
319 "message_loop/message_pump_observer.h", | 319 "message_loop/message_pump_observer.h", |
320 "message_loop/message_pump_ozone.cc", | 320 "message_loop/message_pump_ozone.cc", |
321 "message_loop/message_pump_ozone.h", | 321 "message_loop/message_pump_ozone.h", |
322 "message_loop/message_pump_win.cc", | 322 "message_loop/message_pump_win.cc", |
323 "message_loop/message_pump_win.h", | 323 "message_loop/message_pump_win.h", |
| 324 "message_loop/message_pump_x11.cc", |
| 325 "message_loop/message_pump_x11.h", |
324 "metrics/field_trial.cc", | 326 "metrics/field_trial.cc", |
325 "metrics/field_trial.h", | 327 "metrics/field_trial.h", |
326 "metrics/sample_map.cc", | 328 "metrics/sample_map.cc", |
327 "metrics/sample_map.h", | 329 "metrics/sample_map.h", |
328 "metrics/sample_vector.cc", | 330 "metrics/sample_vector.cc", |
329 "metrics/sample_vector.h", | 331 "metrics/sample_vector.h", |
330 "metrics/bucket_ranges.cc", | 332 "metrics/bucket_ranges.cc", |
331 "metrics/bucket_ranges.h", | 333 "metrics/bucket_ranges.h", |
332 "metrics/histogram.cc", | 334 "metrics/histogram.cc", |
333 "metrics/histogram.h", | 335 "metrics/histogram.h", |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 static_library("run_all_unittests") { | 1012 static_library("run_all_unittests") { |
1011 external = true | 1013 external = true |
1012 sources = [ | 1014 sources = [ |
1013 "test/run_all_unittests.cc", | 1015 "test/run_all_unittests.cc", |
1014 ] | 1016 ] |
1015 deps = [ | 1017 deps = [ |
1016 ":test_support_base", | 1018 ":test_support_base", |
1017 ] | 1019 ] |
1018 } | 1020 } |
1019 | 1021 |
OLD | NEW |