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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/environment:chromium", | 49 "//mojo/environment:chromium", |
50 "//skia", | 50 "//skia", |
51 "//third_party/WebKit/public:blink", | 51 "//third_party/WebKit/public:blink", |
52 "//third_party/mojo/src/mojo/edk/system", | 52 "//third_party/mojo/src/mojo/edk/system", |
| 53 "//ui/base", |
| 54 "//ui/base/ime", |
53 "//ui/wm", | 55 "//ui/wm", |
54 "//v8", | 56 "//v8", |
55 ] | 57 ] |
56 sources = [ | 58 sources = [ |
57 "app/shell_main_delegate.cc", | 59 "app/shell_main_delegate.cc", |
58 "app/shell_main_delegate.h", | 60 "app/shell_main_delegate.h", |
59 "browser/api/identity/identity_api.cc", | 61 "browser/api/identity/identity_api.cc", |
60 "browser/api/identity/identity_api.h", | 62 "browser/api/identity/identity_api.h", |
61 "browser/default_shell_browser_main_delegate.cc", | 63 "browser/default_shell_browser_main_delegate.cc", |
62 "browser/default_shell_browser_main_delegate.h", | 64 "browser/default_shell_browser_main_delegate.h", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 configs += [ "//build/config/win:windowed" ] | 170 configs += [ "//build/config/win:windowed" ] |
169 configs -= [ "//build/config/win:console" ] | 171 configs -= [ "//build/config/win:console" ] |
170 } | 172 } |
171 } | 173 } |
172 } | 174 } |
173 | 175 |
174 process_version("version_header") { | 176 process_version("version_header") { |
175 source = "common/version.h.in" | 177 source = "common/version.h.in" |
176 output = "$target_gen_dir/common/version.h" | 178 output = "$target_gen_dir/common/version.h" |
177 } | 179 } |
OLD | NEW |