Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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", | 63 ":app_switches", |
| 64 ":app_ui", | 64 ":app_ui", |
| 65 ":blob_channel", | 65 ":blob_channel_service", |
| 66 ":common", | 66 ":common", |
| 67 ":crash", | 67 ":crash", |
| 68 ":renderer", | 68 ":renderer", |
| 69 ":session", | 69 ":session", |
| 70 "//base", | 70 "//base", |
| 71 "//blimp/common", | 71 "//blimp/common", |
| 72 "//blimp/common/proto", | 72 "//blimp/common/proto", |
| 73 "//blimp/engine:blob_channel_mojo_cpp_sources", | 73 "//blimp/engine:blob_channel_mojo_cpp_sources", |
| 74 "//blimp/net", | 74 "//blimp/net", |
| 75 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 75 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 245 "//ui/base/ime", | 245 "//ui/base/ime", |
| 246 "//ui/resources", | 246 "//ui/resources", |
| 247 "//ui/wm", | 247 "//ui/wm", |
| 248 ] | 248 ] |
| 249 } | 249 } |
| 250 | 250 |
| 251 source_set("renderer") { | 251 source_set("renderer") { |
| 252 sources = [ | 252 sources = [ |
| 253 "renderer/blimp_content_renderer_client.cc", | 253 "renderer/blimp_content_renderer_client.cc", |
| 254 "renderer/blimp_content_renderer_client.h", | 254 "renderer/blimp_content_renderer_client.h", |
| 255 "renderer/blimp_content_renderer_client.h", | |
|
nyquist
2016/05/24 00:05:41
Nit: I don't think you need to list this twice. Al
Kevin M
2016/05/27 22:35:30
Done.
| |
| 256 "renderer/blob_channel_sender_host.cc", | |
| 257 "renderer/blob_channel_sender_host.h", | |
| 255 "renderer/engine_image_serialization_processor.cc", | 258 "renderer/engine_image_serialization_processor.cc", |
| 256 "renderer/engine_image_serialization_processor.h", | 259 "renderer/engine_image_serialization_processor.h", |
| 257 ] | 260 ] |
| 258 | 261 |
| 259 deps = [ | 262 deps = [ |
| 260 ":blob_channel_mojo", | 263 ":blob_channel_mojo", |
| 261 "//base", | 264 "//base", |
| 262 "//blimp/common", | 265 "//blimp/common", |
| 263 "//blimp/common/proto", | 266 "//blimp/common/proto", |
| 264 "//cc", | 267 "//cc", |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 292 "//content/public/browser", | 295 "//content/public/browser", |
| 293 "//net", | 296 "//net", |
| 294 "//ui/aura", | 297 "//ui/aura", |
| 295 "//ui/base/ime", | 298 "//ui/base/ime", |
| 296 "//ui/gfx/geometry", | 299 "//ui/gfx/geometry", |
| 297 "//ui/wm", | 300 "//ui/wm", |
| 298 ] | 301 ] |
| 299 } | 302 } |
| 300 | 303 |
| 301 # Implements the browser portions of the Mojo bridge to BlobChannel. | 304 # Implements the browser portions of the Mojo bridge to BlobChannel. |
| 302 source_set("blob_channel") { | 305 source_set("blob_channel_service") { |
| 303 sources = [ | 306 sources = [ |
| 304 "mojo/blob_channel_service.cc", | 307 "mojo/blob_channel_service.cc", |
| 305 "mojo/blob_channel_service.h", | 308 "mojo/blob_channel_service.h", |
| 306 ] | 309 ] |
| 307 deps = [ | 310 deps = [ |
| 308 ":blob_channel_mojo", | 311 ":blob_channel_mojo", |
| 309 ] | 312 ] |
| 310 } | 313 } |
| 311 | 314 |
| 312 mojom("blob_channel_mojo") { | 315 mojom("blob_channel_mojo") { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 368 deps = [ | 371 deps = [ |
| 369 ":feature", | 372 ":feature", |
| 370 "//base", | 373 "//base", |
| 371 "//base/test:run_all_unittests", | 374 "//base/test:run_all_unittests", |
| 372 "//base/test:test_support", | 375 "//base/test:test_support", |
| 373 "//blimp/common", | 376 "//blimp/common", |
| 374 "//blimp/common/proto", | 377 "//blimp/common/proto", |
| 375 "//blimp/engine:app_settings", | 378 "//blimp/engine:app_settings", |
| 376 "//blimp/net", | 379 "//blimp/net", |
| 377 "//blimp/net:test_support", | 380 "//blimp/net:test_support", |
| 381 "//blimp/net:test_support", | |
|
nyquist
2016/05/24 00:05:41
Nit: I don't think you need to list this twice.
Kevin M
2016/05/27 22:35:30
Done.
| |
| 382 "//content", | |
| 378 "//content/public/browser", | 383 "//content/public/browser", |
| 379 "//net", | 384 "//net", |
| 380 "//net:test_support", | 385 "//net:test_support", |
| 381 "//testing/gmock", | 386 "//testing/gmock", |
| 382 "//testing/gtest", | 387 "//testing/gtest", |
| 383 "//third_party/WebKit/public:blink_headers", | 388 "//third_party/WebKit/public:blink_headers", |
| 384 "//ui/base/ime", | 389 "//ui/base/ime", |
| 385 ] | 390 ] |
| 386 } | 391 } |
| 387 | 392 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 465 _rebased_dockerfile, | 470 _rebased_dockerfile, |
| 466 "--startup-script", | 471 "--startup-script", |
| 467 _rebased_startup_script, | 472 _rebased_startup_script, |
| 468 "--manifest", | 473 "--manifest", |
| 469 _rebased_manifest, | 474 _rebased_manifest, |
| 470 "--output", | 475 "--output", |
| 471 rebase_path(_bundle), | 476 rebase_path(_bundle), |
| 472 ] | 477 ] |
| 473 } | 478 } |
| 474 } | 479 } |
| OLD | NEW |