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