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

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

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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("//extensions/shell/app_shell.gni") 5 import("//extensions/shell/app_shell.gni")
6 6
7 # Technically, this directory should not depend on files from src/chrome, but 7 # Technically, this directory should not depend on files from src/chrome, but
8 # that's where the VERSION file is. This should probably all be moved to 8 # that's where the VERSION file is. This should probably all be moved to
9 # src/build. 9 # src/build.
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "//extensions/common", 50 "//extensions/common",
51 "//extensions/renderer", 51 "//extensions/renderer",
52 "//extensions/shell/common/api", 52 "//extensions/shell/common/api",
53 "//extensions/shell/common/api:api_registration", 53 "//extensions/shell/common/api:api_registration",
54 "//extensions/utility", 54 "//extensions/utility",
55 "//extensions:extensions_resources", 55 "//extensions:extensions_resources",
56 "//extensions:shell_and_test_pak", 56 "//extensions:shell_and_test_pak",
57 "//mojo/environment:chromium", 57 "//mojo/environment:chromium",
58 "//skia", 58 "//skia",
59 "//third_party/WebKit/public:blink", 59 "//third_party/WebKit/public:blink",
60 "//third_party/mojo/src/mojo/edk/system",
61 "//ui/base", 60 "//ui/base",
62 "//ui/base/ime", 61 "//ui/base/ime",
63 "//v8", 62 "//v8",
64 ] 63 ]
65 64
65 if (use_chrome_edk) {
66 deps += [ "//mojo/edk/system" ]
67 } else {
68 deps += [ "//third_party/mojo/src/mojo/edk/system" ]
69 }
70
66 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources, 71 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources,
67 ".", 72 ".",
68 "//extensions/shell") 73 "//extensions/shell")
69 74
70 if (use_aura) { 75 if (use_aura) {
71 deps += [ "//ui/wm" ] 76 deps += [ "//ui/wm" ]
72 77
73 aura_sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources_aura, 78 aura_sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources_aura,
74 ".", 79 ".",
75 "//extensions/shell") 80 "//extensions/shell")
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 236
232 if (is_win) { 237 if (is_win) {
233 deps += [ "//base/allocator" ] 238 deps += [ "//base/allocator" ]
234 } 239 }
235 } 240 }
236 241
237 process_version("version_header") { 242 process_version("version_header") {
238 template_file = "common/version.h.in" 243 template_file = "common/version.h.in"
239 output = "$target_gen_dir/common/version.h" 244 output = "$target_gen_dir/common/version.h"
240 } 245 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698