| 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/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 ] | 157 ] |
| 158 } | 158 } |
| 159 | 159 |
| 160 # GYP: //chrome/chrome_shell.gypi:libchromeshell_base | 160 # GYP: //chrome/chrome_shell.gypi:libchromeshell_base |
| 161 group("chrome_shell_base") { | 161 group("chrome_shell_base") { |
| 162 deps = [ | 162 deps = [ |
| 163 "//chrome/browser/ui", | 163 "//chrome/browser/ui", |
| 164 "//chrome:chrome_android_core", | 164 "//chrome:chrome_android_core", |
| 165 "//base", | 165 "//base", |
| 166 "//base/allocator", | 166 "//base/allocator", |
| 167 "//content/public/app:browser", | 167 "//content/public/app:both", |
| 168 "//skia", | 168 "//skia", |
| 169 ] | 169 ] |
| 170 # TODO(GYP): | 170 # TODO(GYP): |
| 171 #[ 'order_profiling!=0', { | 171 #[ 'order_profiling!=0', { |
| 172 #'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ], | 172 #'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ], |
| 173 #}], | 173 #}], |
| 174 } | 174 } |
| 175 | 175 |
| 176 # GYP: //chrome/chrome_shell.gypi:libchromeshell | 176 # GYP: //chrome/chrome_shell.gypi:libchromeshell |
| 177 shared_library("chrome_shell") { | 177 shared_library("chrome_shell") { |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 ] | 485 ] |
| 486 } | 486 } |
| 487 | 487 |
| 488 zip("chrome_version_srcjar") { | 488 zip("chrome_version_srcjar") { |
| 489 inputs = [ | 489 inputs = [ |
| 490 chrome_version_java_file, | 490 chrome_version_java_file, |
| 491 ] | 491 ] |
| 492 output = "$target_gen_dir/$target_name.srcjar" | 492 output = "$target_gen_dir/$target_name.srcjar" |
| 493 base_dir = chrome_version_java_dir | 493 base_dir = chrome_version_java_dir |
| 494 } | 494 } |
| OLD | NEW |