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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1958033003: Allows client to access auth token from command line specified file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses the rest of kmarshall's #7 comments Created 4 years, 7 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "app/blimp_content_browser_client.h", 53 "app/blimp_content_browser_client.h",
54 "app/blimp_content_main_delegate.cc", 54 "app/blimp_content_main_delegate.cc",
55 "app/blimp_content_main_delegate.h", 55 "app/blimp_content_main_delegate.h",
56 ] 56 ]
57 57
58 deps = [ 58 deps = [
59 ":app_config", 59 ":app_config",
60 ":app_net", 60 ":app_net",
61 ":app_permissions", 61 ":app_permissions",
62 ":app_settings", 62 ":app_settings",
63 ":app_switches",
64 ":app_ui", 63 ":app_ui",
65 ":blob_channel", 64 ":blob_channel",
66 ":common", 65 ":common",
67 ":crash", 66 ":crash",
68 ":renderer", 67 ":renderer",
69 ":session", 68 ":session",
70 "//base", 69 "//base",
71 "//blimp/common", 70 "//blimp/common",
72 "//blimp/common/proto", 71 "//blimp/common/proto",
73 "//blimp/engine:blob_channel_mojo_cpp_sources", 72 "//blimp/engine:blob_channel_mojo_cpp_sources",
74 "//blimp/net", 73 "//blimp/net",
75 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", 74 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted",
76 "//components/crash/content/app:lib", 75 "//components/crash/content/app:lib",
77 "//content/public/app:both", 76 "//content/public/app:both",
78 "//content/public/browser", 77 "//content/public/browser",
79 "//content/public/common", 78 "//content/public/common",
80 "//content/public/renderer", 79 "//content/public/renderer",
81 "//content/public/utility", 80 "//content/public/utility",
82 "//net", 81 "//net",
83 ] 82 ]
84 } 83 }
85 84
86 source_set("app_config") { 85 source_set("app_config") {
87 sources = [ 86 sources = [
88 "app/blimp_engine_config.cc", 87 "app/blimp_engine_config.cc",
89 "app/blimp_engine_config.h", 88 "app/blimp_engine_config.h",
90 ] 89 ]
91 deps = [ 90 deps = [
92 ":app_switches",
93 "//base", 91 "//base",
92 "//blimp/common",
94 "//cc", 93 "//cc",
95 "//content/public/common", 94 "//content/public/common",
96 "//ui/gl", 95 "//ui/gl",
97 "//ui/native_theme", 96 "//ui/native_theme",
98 ] 97 ]
99 } 98 }
100 99
101 source_set("app_net") { 100 source_set("app_net") {
102 sources = [ 101 sources = [
103 "app/blimp_network_delegate.cc", 102 "app/blimp_network_delegate.cc",
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 sources = [ 334 sources = [
336 "app/blimp_engine_config_unittest.cc", 335 "app/blimp_engine_config_unittest.cc",
337 "app/settings_manager_unittest.cc", 336 "app/settings_manager_unittest.cc",
338 "app/ui/blimp_screen_unittest.cc", 337 "app/ui/blimp_screen_unittest.cc",
339 ] 338 ]
340 339
341 deps = [ 340 deps = [
342 ":app", 341 ":app",
343 ":app_config", 342 ":app_config",
344 ":app_settings", 343 ":app_settings",
345 ":app_switches",
346 "//base", 344 "//base",
347 "//base/test:run_all_unittests", 345 "//base/test:run_all_unittests",
348 "//base/test:test_support", 346 "//base/test:test_support",
347 "//blimp/common",
348 "//blimp/common:test_support",
349 "//blimp/engine:app_ui", 349 "//blimp/engine:app_ui",
350 "//testing/gmock", 350 "//testing/gmock",
351 "//testing/gtest", 351 "//testing/gtest",
352 "//ui/display", 352 "//ui/display",
353 "//ui/gfx:test_support", 353 "//ui/gfx:test_support",
354 ] 354 ]
355 } 355 }
356 356
357 source_set("feature_unit_tests") { 357 source_set("feature_unit_tests") {
358 testonly = true 358 testonly = true
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 _rebased_dockerfile, 462 _rebased_dockerfile,
463 "--startup-script", 463 "--startup-script",
464 _rebased_startup_script, 464 _rebased_startup_script,
465 "--manifest", 465 "--manifest",
466 _rebased_manifest, 466 _rebased_manifest,
467 "--output", 467 "--output",
468 rebase_path(_bundle), 468 rebase_path(_bundle),
469 ] 469 ]
470 } 470 }
471 } 471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698