| 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("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 8 |
| 8 source_set("common_constants") { | 9 source_set("common_constants") { |
| 9 sources = [ | 10 sources = [ |
| 10 "constants.cc", | 11 "constants.cc", |
| 11 "constants.h", | 12 "constants.h", |
| 12 ] | 13 ] |
| 13 | 14 |
| 14 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 15 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 16 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "//extensions/strings", | 356 "//extensions/strings", |
| 356 "//ipc", | 357 "//ipc", |
| 357 "//testing/gmock", | 358 "//testing/gmock", |
| 358 "//testing/gtest", | 359 "//testing/gtest", |
| 359 "//ui/base", | 360 "//ui/base", |
| 360 "//ui/gfx", | 361 "//ui/gfx", |
| 361 "//url", | 362 "//url", |
| 362 ] | 363 ] |
| 363 } | 364 } |
| 364 } # enable_extensions | 365 } # enable_extensions |
| OLD | NEW |