Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Side by Side Diff: extensions/common/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 source_set("common_constants") { 8 source_set("common_constants") {
9 sources = [ 9 sources = [
10 "constants.cc", 10 "constants.cc",
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 configs += [ 250 configs += [
251 "//build/config:precompiled_headers", 251 "//build/config:precompiled_headers",
252 252
253 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 253 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
254 "//build/config/compiler:no_size_t_to_int_warning", 254 "//build/config/compiler:no_size_t_to_int_warning",
255 ] 255 ]
256 256
257 public_deps = [ 257 public_deps = [
258 ":common_constants", 258 ":common_constants",
259 ":mojo", 259 ":mojo",
260 "//skia",
260 ] 261 ]
261 262
262 deps = [ 263 deps = [
263 "//base", 264 "//base",
264 265
265 # TODO(benwells): figure out what to do with the api target and 266 # TODO(benwells): figure out what to do with the api target and
266 # api resources compiled into the chrome resource bundle. 267 # api resources compiled into the chrome resource bundle.
267 # http://crbug.com/162530 268 # http://crbug.com/162530
268 "//chrome:resources", 269 "//chrome:resources",
269 "//components/crx_file", 270 "//components/crx_file",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 "//extensions/strings", 354 "//extensions/strings",
354 "//ipc", 355 "//ipc",
355 "//testing/gmock", 356 "//testing/gmock",
356 "//testing/gtest", 357 "//testing/gtest",
357 "//ui/base", 358 "//ui/base",
358 "//ui/gfx", 359 "//ui/gfx",
359 "//url", 360 "//url",
360 ] 361 ]
361 } 362 }
362 } # enable_extensions 363 } # enable_extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698