| 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 import("//build/config/features.gni") |    4 import("//build/config/features.gni") | 
|    5  |    5  | 
|    6 if (is_android) { |    6 if (is_android) { | 
|    7   import("//build/config/android/rules.gni")  # For generate_jni(). |    7   import("//build/config/android/rules.gni")  # For generate_jni(). | 
|    8 } |    8 } | 
|    9  |    9  | 
|   10 config("bluetooth_config") { |   10 config("bluetooth_config") { | 
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  109     "bluetooth_uuid.h", |  109     "bluetooth_uuid.h", | 
|  110   ] |  110   ] | 
|  111  |  111  | 
|  112   defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |  112   defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 
|  113  |  113  | 
|  114   all_dependent_configs = [ ":bluetooth_config" ] |  114   all_dependent_configs = [ ":bluetooth_config" ] | 
|  115  |  115  | 
|  116   deps = [ |  116   deps = [ | 
|  117     "//base", |  117     "//base", | 
|  118     "//crypto", |  118     "//crypto", | 
 |  119     "//device/bluetooth/strings", | 
 |  120     "//device/bluetooth/uribeacon", | 
 |  121     "//ipc", | 
|  119     "//net", |  122     "//net", | 
|  120     "//ui/base", |  123     "//ui/base", | 
|  121     "strings", |  | 
|  122     "uribeacon", |  | 
|  123   ] |  124   ] | 
|  124  |  125  | 
|  125   if (is_android) { |  126   if (is_android) { | 
|  126     deps += [ ":jni_headers" ] |  127     deps += [ ":jni_headers" ] | 
|  127   } |  128   } | 
|  128  |  129  | 
|  129   if (is_chromeos) { |  130   if (is_chromeos) { | 
|  130     deps += [ "//chromeos" ] |  131     deps += [ "//chromeos" ] | 
|  131   } |  132   } | 
|  132  |  133  | 
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  306     jni_package = "bluetooth" |  307     jni_package = "bluetooth" | 
|  307   } |  308   } | 
|  308  |  309  | 
|  309   android_library("java") { |  310   android_library("java") { | 
|  310     java_files = java_sources_needing_jni |  311     java_files = java_sources_needing_jni | 
|  311     deps = [ |  312     deps = [ | 
|  312       "//base:base_java", |  313       "//base:base_java", | 
|  313     ] |  314     ] | 
|  314   } |  315   } | 
|  315 } |  316 } | 
| OLD | NEW |