| 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("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 source_set("common_constants") { | 9 source_set("common_constants") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 configs += [ | 264 configs += [ |
| 265 "//build/config:precompiled_headers", | 265 "//build/config:precompiled_headers", |
| 266 | 266 |
| 267 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 267 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 268 "//build/config/compiler:no_size_t_to_int_warning", | 268 "//build/config/compiler:no_size_t_to_int_warning", |
| 269 ] | 269 ] |
| 270 | 270 |
| 271 public_deps = [ | 271 public_deps = [ |
| 272 ":common_constants", | 272 ":common_constants", |
| 273 ":mojo", | 273 ":mojo", |
| 274 "//content/public/common", |
| 274 "//ipc", | 275 "//ipc", |
| 275 "//skia", | 276 "//skia", |
| 276 ] | 277 ] |
| 277 | 278 |
| 278 deps = [ | 279 deps = [ |
| 279 "//base", | 280 "//base", |
| 280 | 281 |
| 281 # TODO(benwells): figure out what to do with the api target and | 282 # TODO(benwells): figure out what to do with the api target and |
| 282 # api resources compiled into the chrome resource bundle. | 283 # api resources compiled into the chrome resource bundle. |
| 283 # http://crbug.com/162530 | 284 # http://crbug.com/162530 |
| 284 "//chrome:resources", | 285 "//chrome:resources", |
| 285 "//components/crx_file", | 286 "//components/crx_file", |
| 286 "//components/url_matcher", | 287 "//components/url_matcher", |
| 287 "//content/public/common", | |
| 288 "//crypto", | 288 "//crypto", |
| 289 "//device/bluetooth", | 289 "//device/bluetooth", |
| 290 "//device/usb", | 290 "//device/usb", |
| 291 "//extensions:extensions_resources", | 291 "//extensions:extensions_resources", |
| 292 "//extensions/common/api", | 292 "//extensions/common/api", |
| 293 "//extensions/strings", | 293 "//extensions/strings", |
| 294 "//net", | 294 "//net", |
| 295 "//third_party/boringssl", | 295 "//third_party/boringssl", |
| 296 "//third_party/icu", | 296 "//third_party/icu", |
| 297 "//third_party/libxml", | 297 "//third_party/libxml", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 "//ui/base", | 384 "//ui/base", |
| 385 "//ui/gfx", | 385 "//ui/gfx", |
| 386 "//url", | 386 "//url", |
| 387 ] | 387 ] |
| 388 | 388 |
| 389 if (is_chromeos) { | 389 if (is_chromeos) { |
| 390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] | 390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] |
| 391 } | 391 } |
| 392 } | 392 } |
| 393 } # enable_extensions | 393 } # enable_extensions |
| OLD | NEW |