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 import("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 | 6 |
7 assert(enable_extensions) | 7 assert(enable_extensions) |
8 | 8 |
9 grit("resources") { | 9 grit("resources") { |
10 source = "app_shell_resources.grd" | 10 source = "app_shell_resources.grd" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "//skia", | 46 "//skia", |
47 "//third_party/WebKit/public:blink", | 47 "//third_party/WebKit/public:blink", |
48 "//ui/wm", | 48 "//ui/wm", |
49 "//v8", | 49 "//v8", |
50 ] | 50 ] |
51 sources = [ | 51 sources = [ |
52 "app/shell_main_delegate.cc", | 52 "app/shell_main_delegate.cc", |
53 "app/shell_main_delegate.h", | 53 "app/shell_main_delegate.h", |
54 "browser/api/identity/identity_api.cc", | 54 "browser/api/identity/identity_api.cc", |
55 "browser/api/identity/identity_api.h", | 55 "browser/api/identity/identity_api.h", |
| 56 "browser/api/shell_gcd/shell_gcd_api.cc", |
| 57 "browser/api/shell_gcd/shell_gcd_api.h", |
56 "browser/api/shell_window/shell_window_api.cc", | 58 "browser/api/shell_window/shell_window_api.cc", |
57 "browser/api/shell_window/shell_window_api.h", | 59 "browser/api/shell_window/shell_window_api.h", |
58 "browser/default_shell_browser_main_delegate.cc", | 60 "browser/default_shell_browser_main_delegate.cc", |
59 "browser/default_shell_browser_main_delegate.h", | 61 "browser/default_shell_browser_main_delegate.h", |
60 "browser/desktop_controller.cc", | 62 "browser/desktop_controller.cc", |
61 "browser/desktop_controller.h", | 63 "browser/desktop_controller.h", |
62 "browser/media_capture_util.cc", | 64 "browser/media_capture_util.cc", |
63 "browser/media_capture_util.h", | 65 "browser/media_capture_util.h", |
64 "browser/shell_app_delegate.cc", | 66 "browser/shell_app_delegate.cc", |
65 "browser/shell_app_delegate.h", | 67 "browser/shell_app_delegate.h", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 version_h | 156 version_h |
155 ] | 157 ] |
156 outputs = [ "$target_gen_dir/common/version.h" ] | 158 outputs = [ "$target_gen_dir/common/version.h" ] |
157 args = [ | 159 args = [ |
158 "-f", rebase_path(lastchange_path, root_build_dir), | 160 "-f", rebase_path(lastchange_path, root_build_dir), |
159 "-e", "VERSION_FULL=\"$version_full\"", | 161 "-e", "VERSION_FULL=\"$version_full\"", |
160 rebase_path(version_h, root_build_dir), | 162 rebase_path(version_h, root_build_dir), |
161 rebase_path("$target_gen_dir/common/version.h") | 163 rebase_path("$target_gen_dir/common/version.h") |
162 ] | 164 ] |
163 } | 165 } |
OLD | NEW |