OLD | NEW |
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 # Technically, this directory should not depend on files from src/chrome, but | 5 # Technically, this directory should not depend on files from src/chrome, but |
6 # that's where the VERSION file is. This should probably all be moved to | 6 # that's where the VERSION file is. This should probably all be moved to |
7 # src/build. | 7 # src/build. |
8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 "//extensions/common/api", | 39 "//extensions/common/api", |
40 "//extensions/common/api:api_registration", | 40 "//extensions/common/api:api_registration", |
41 "//extensions/browser", | 41 "//extensions/browser", |
42 "//extensions/common", | 42 "//extensions/common", |
43 "//extensions/renderer", | 43 "//extensions/renderer", |
44 "//extensions/shell/common/api", | 44 "//extensions/shell/common/api", |
45 "//extensions/shell/common/api:api_registration", | 45 "//extensions/shell/common/api:api_registration", |
46 "//extensions/utility", | 46 "//extensions/utility", |
47 "//extensions:extensions_resources", | 47 "//extensions:extensions_resources", |
48 "//extensions:shell_and_test_pak", | 48 "//extensions:shell_and_test_pak", |
49 "//mojo/edk/system", | |
50 "//mojo/environment:chromium", | 49 "//mojo/environment:chromium", |
51 "//skia", | 50 "//skia", |
52 "//third_party/WebKit/public:blink", | 51 "//third_party/WebKit/public:blink", |
| 52 "//third_party/mojo/src/mojo/edk/system", |
53 "//ui/wm", | 53 "//ui/wm", |
54 "//v8", | 54 "//v8", |
55 ] | 55 ] |
56 sources = [ | 56 sources = [ |
57 "app/shell_main_delegate.cc", | 57 "app/shell_main_delegate.cc", |
58 "app/shell_main_delegate.h", | 58 "app/shell_main_delegate.h", |
59 "browser/api/identity/identity_api.cc", | 59 "browser/api/identity/identity_api.cc", |
60 "browser/api/identity/identity_api.h", | 60 "browser/api/identity/identity_api.h", |
61 "browser/default_shell_browser_main_delegate.cc", | 61 "browser/default_shell_browser_main_delegate.cc", |
62 "browser/default_shell_browser_main_delegate.h", | 62 "browser/default_shell_browser_main_delegate.h", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 ":app_shell_lib", | 163 ":app_shell_lib", |
164 "//extensions:shell_and_test_pak", | 164 "//extensions:shell_and_test_pak", |
165 ] | 165 ] |
166 } | 166 } |
167 } | 167 } |
168 | 168 |
169 process_version("version_header") { | 169 process_version("version_header") { |
170 source = "common/version.h.in" | 170 source = "common/version.h.in" |
171 output = "$target_gen_dir/common/version.h" | 171 output = "$target_gen_dir/common/version.h" |
172 } | 172 } |
OLD | NEW |