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

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

Issue 673843002: Splits components/sessions into separate core and content targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comments. Created 6 years, 2 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
« no previous file with comments | « components/sessions/BUILD.gn ('k') | extensions/extensions.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 "//components/copresence_sockets", 14 "//components/copresence_sockets",
15 "//components/keyed_service/content", 15 "//components/keyed_service/content",
16 "//components/keyed_service/core", 16 "//components/keyed_service/core",
17 "//components/pref_registry", 17 "//components/pref_registry",
18 "//components/sessions", 18 "//components/sessions:sessions_content",
19 "//components/web_cache/browser", 19 "//components/web_cache/browser",
20 "//components/web_modal", 20 "//components/web_modal",
21 "//content/public/browser", 21 "//content/public/browser",
22 "//extensions/common", 22 "//extensions/common",
23 "//extensions/common/api", 23 "//extensions/common/api",
24 "//extensions/common/api:api_registration", 24 "//extensions/common/api:api_registration",
25 "//extensions/strings", 25 "//extensions/strings",
26 "//google_apis", 26 "//google_apis",
27 "//skia", 27 "//skia",
28 "//third_party/leveldatabase", 28 "//third_party/leveldatabase",
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 ] 491 ]
492 } 492 }
493 } 493 }
494 494
495 if (is_win) { 495 if (is_win) {
496 cflags = [ 496 cflags = [
497 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 497 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
498 ] 498 ]
499 } 499 }
500 } 500 }
OLDNEW
« no previous file with comments | « components/sessions/BUILD.gn ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698