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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//extensions/shell/app_shell.gni") | 6 import("//extensions/shell/app_shell.gni") |
7 | 7 |
8 # Technically, this directory should not depend on files from src/chrome, but | 8 # Technically, this directory should not depend on files from src/chrome, but |
9 # that's where the VERSION file is. This should probably all be moved to | 9 # that's where the VERSION file is. This should probably all be moved to |
10 # src/build. | 10 # src/build. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 aura_sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources_aura, | 74 aura_sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources_aura, |
75 ".", | 75 ".", |
76 "//extensions/shell") | 76 "//extensions/shell") |
77 sources += aura_sources | 77 sources += aura_sources |
78 } | 78 } |
79 | 79 |
80 if (is_chromeos) { | 80 if (is_chromeos) { |
81 deps += [ | 81 deps += [ |
82 "//chromeos", | 82 "//chromeos", |
83 "//ui/chromeos:ui_chromeos", | 83 "//ui/chromeos", |
84 "//ui/display", | 84 "//ui/display", |
85 ] | 85 ] |
86 chromeos_sources = | 86 chromeos_sources = |
87 rebase_path(app_shell_gypi_values.app_shell_lib_sources_chromeos, | 87 rebase_path(app_shell_gypi_values.app_shell_lib_sources_chromeos, |
88 ".", | 88 ".", |
89 "//extensions/shell") | 89 "//extensions/shell") |
90 sources += chromeos_sources | 90 sources += chromeos_sources |
91 } | 91 } |
92 | 92 |
93 if (enable_nacl) { | 93 if (enable_nacl) { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 testonly = true | 212 testonly = true |
213 sources = [ | 213 sources = [ |
214 "app/shell_main_mac.cc", | 214 "app/shell_main_mac.cc", |
215 "app/shell_main_mac.h", | 215 "app/shell_main_mac.h", |
216 ] | 216 ] |
217 deps = [ | 217 deps = [ |
218 ":app_shell_lib", | 218 ":app_shell_lib", |
219 ] | 219 ] |
220 } | 220 } |
221 } | 221 } |
OLD | NEW |