| 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 component("base") { | 5 component("base") { |
| 6 external = true | 6 external = true |
| 7 sources = [ | 7 sources = [ |
| 8 "../build/build_config.h", | 8 "../build/build_config.h", |
| 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 | 780 |
| 781 # Linux. | 781 # Linux. |
| 782 if (is_linux) { | 782 if (is_linux) { |
| 783 # TODO(brettw) these will need to be parameterized at some point. | 783 # TODO(brettw) these will need to be parameterized at some point. |
| 784 linux_configs = [ | 784 linux_configs = [ |
| 785 "//build/config/linux:glib", | 785 "//build/config/linux:glib", |
| 786 "//build/config/linux:gtk", | 786 "//build/config/linux:gtk", |
| 787 "//build/config/linux:x11", | 787 "//build/config/linux:x11", |
| 788 ] | 788 ] |
| 789 configs += linux_configs | 789 configs += linux_configs |
| 790 all_dependent_configs += linux_configs | 790 all_dependent_configs = linux_configs |
| 791 | 791 |
| 792 deps += [ | 792 deps += [ |
| 793 "//base/third_party/symbolize", | 793 "//base/third_party/symbolize", |
| 794 "//base/third_party/xdg_mime", | 794 "//base/third_party/xdg_mime", |
| 795 "//base/third_party/xdg_user_dirs", | 795 "//base/third_party/xdg_user_dirs", |
| 796 ] | 796 ] |
| 797 } else { | 797 } else { |
| 798 # Non-Linux. | 798 # Non-Linux. |
| 799 sources -= [ | 799 sources -= [ |
| 800 "message_loop/message_pump_glib.cc", | 800 "message_loop/message_pump_glib.cc", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 static_library("run_all_unittests") { | 1026 static_library("run_all_unittests") { |
| 1027 external = true | 1027 external = true |
| 1028 sources = [ | 1028 sources = [ |
| 1029 "test/run_all_unittests.cc", | 1029 "test/run_all_unittests.cc", |
| 1030 ] | 1030 ] |
| 1031 deps = [ | 1031 deps = [ |
| 1032 ":test_support_base", | 1032 ":test_support_base", |
| 1033 ] | 1033 ] |
| 1034 } | 1034 } |
| 1035 | 1035 |
| OLD | NEW |