OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 | 8 |
9 source_set("browser") { | 9 source_set("browser") { |
10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", | 79 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", |
80 ], ".") | 80 ], ".") |
81 | 81 |
82 # Non-iOS deps. | 82 # Non-iOS deps. |
83 deps += [ | 83 deps += [ |
84 "//content/browser/devtools:resources", | 84 "//content/browser/devtools:resources", |
85 "//content/common:mojo_bindings", | 85 "//content/common:mojo_bindings", |
86 "//cc", | 86 "//cc", |
87 "//cc:cc_surfaces", | 87 "//cc:cc_surfaces", |
88 "//mojo/public/cpp/bindings", | 88 "//mojo/public/cpp/bindings", |
89 "//mojo/public/interfaces/service_provider:service_provider", | 89 "//mojo/public/interfaces/interface_provider", |
90 "//mojo/public/js/bindings", | 90 "//mojo/public/js/bindings", |
91 "//net:http_server", | 91 "//net:http_server", |
92 "//third_party/icu", | 92 "//third_party/icu", |
93 "//third_party/leveldatabase", | 93 "//third_party/leveldatabase", |
94 "//third_party/libyuv", | 94 "//third_party/libyuv", |
95 "//ui/resources", | 95 "//ui/resources", |
96 "//ui/surface", | 96 "//ui/surface", |
97 "//ui/webui/resources", | 97 "//ui/webui/resources", |
98 "//webkit:resources", | 98 "//webkit:resources", |
99 "//webkit:strings", | 99 "//webkit:strings", |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 sources -= [ | 360 sources -= [ |
361 "geolocation/empty_wifi_data_provider.cc", | 361 "geolocation/empty_wifi_data_provider.cc", |
362 ] | 362 ] |
363 deps += [ "//dbus" ] | 363 deps += [ "//dbus" ] |
364 } else { | 364 } else { |
365 # This will already have gotten removed for all non-Linux cases. | 365 # This will already have gotten removed for all non-Linux cases. |
366 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 366 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
367 } | 367 } |
368 } | 368 } |
369 } | 369 } |
OLD | NEW |