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

Side by Side Diff: content/shell/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/manifest.gni") 8 import("//build/config/win/manifest.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 "//ui/aura:test_support", 281 "//ui/aura:test_support",
282 "//ui/events", 282 "//ui/events",
283 "//ui/strings", 283 "//ui/strings",
284 "//ui/wm", 284 "//ui/wm",
285 ] 285 ]
286 286
287 if (toolkit_views) { 287 if (toolkit_views) {
288 sources += [ "browser/shell_views.cc" ] 288 sources += [ "browser/shell_views.cc" ]
289 deps += [ 289 deps += [
290 "//ui/resources", 290 "//ui/resources",
291 "//ui/views/controls/webview",
292 "//ui/views", 291 "//ui/views",
293 "//ui/views:test_support", 292 "//ui/views:test_support",
293 "//ui/views/controls/webview",
294 ] 294 ]
295 } else { 295 } else {
296 sources += [ "browser/shell_aura.cc" ] 296 sources += [ "browser/shell_aura.cc" ]
297 } 297 }
298 } else { 298 } else {
299 sources -= [ 299 sources -= [
300 "browser/shell_platform_data_aura.cc", 300 "browser/shell_platform_data_aura.cc",
301 "browser/shell_platform_data_aura.h", 301 "browser/shell_platform_data_aura.h",
302 ] 302 ]
303 } 303 }
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 sources = [ 486 sources = [
487 "app/shell_content_main.cc", 487 "app/shell_content_main.cc",
488 "app/shell_content_main.h", 488 "app/shell_content_main.h",
489 ] 489 ]
490 490
491 deps = [ 491 deps = [
492 ":content_shell_lib", 492 ":content_shell_lib",
493 ] 493 ]
494 } 494 }
495 } 495 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698