| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # GN version: //device/bluetooth | 11 # GN version: //device/bluetooth |
| 12 'target_name': 'device_bluetooth', | 12 'target_name': 'device_bluetooth', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
| 16 '../../crypto/crypto.gyp:crypto', | 16 '../../crypto/crypto.gyp:crypto', |
| 17 '../../net/net.gyp:net', | 17 '../../net/net.gyp:net', |
| 18 '../../ui/base/ui_base.gyp:ui_base', | 18 '../../ui/base/ui_base.gyp:ui_base', |
| 19 'bluetooth_strings.gyp:bluetooth_strings', | 19 'bluetooth_strings.gyp:bluetooth_strings', |
| 20 'uribeacon', | |
| 21 ], | 20 ], |
| 22 'defines': [ | 21 'defines': [ |
| 23 'DEVICE_BLUETOOTH_IMPLEMENTATION', | 22 'DEVICE_BLUETOOTH_IMPLEMENTATION', |
| 24 ], | 23 ], |
| 25 'sources': [ | 24 'sources': [ |
| 26 # Note: file list duplicated in GN build. | 25 # Note: file list duplicated in GN build. |
| 27 'android/bluetooth_jni_registrar.cc', | 26 'android/bluetooth_jni_registrar.cc', |
| 28 'android/bluetooth_jni_registrar.h', | 27 'android/bluetooth_jni_registrar.h', |
| 29 'android/wrappers.cc', | 28 'android/wrappers.cc', |
| 30 'android/wrappers.h', | 29 'android/wrappers.h', |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 '-weak_framework CoreBluetooth', | 380 '-weak_framework CoreBluetooth', |
| 382 ], | 381 ], |
| 383 }, | 382 }, |
| 384 }], | 383 }], |
| 385 ], | 384 ], |
| 386 }, | 385 }, |
| 387 }], | 386 }], |
| 388 ], | 387 ], |
| 389 }, | 388 }, |
| 390 { | 389 { |
| 391 # GN version: //device/bluetooth/uribeacon | |
| 392 'target_name': 'uribeacon', | |
| 393 'type': 'static_library', | |
| 394 'dependencies': [ | |
| 395 '../../base/base.gyp:base', | |
| 396 ], | |
| 397 'sources': [ | |
| 398 'uribeacon/uri_encoder.cc', | |
| 399 'uribeacon/uri_encoder.h' | |
| 400 ] | |
| 401 }, | |
| 402 { | |
| 403 # GN version: //device/bluetooth:mocks | 390 # GN version: //device/bluetooth:mocks |
| 404 'target_name': 'device_bluetooth_mocks', | 391 'target_name': 'device_bluetooth_mocks', |
| 405 'type': 'static_library', | 392 'type': 'static_library', |
| 406 'dependencies': [ | 393 'dependencies': [ |
| 407 '../../testing/gmock.gyp:gmock', | 394 '../../testing/gmock.gyp:gmock', |
| 408 'device_bluetooth', | 395 'device_bluetooth', |
| 409 ], | 396 ], |
| 410 'include_dirs': [ | 397 'include_dirs': [ |
| 411 '../../', | 398 '../../', |
| 412 ], | 399 ], |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 ], | 449 ], |
| 463 'variables': { | 450 'variables': { |
| 464 'java_in_dir': '../../device/bluetooth/android/java', | 451 'java_in_dir': '../../device/bluetooth/android/java', |
| 465 }, | 452 }, |
| 466 'includes': [ '../../build/java.gypi' ], | 453 'includes': [ '../../build/java.gypi' ], |
| 467 }, | 454 }, |
| 468 ], | 455 ], |
| 469 }], | 456 }], |
| 470 ], | 457 ], |
| 471 } | 458 } |
| OLD | NEW |