| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 | 441 |
| 442 if (is_android || is_ios) { | 442 if (is_android || is_ios) { |
| 443 # Mobile. | 443 # Mobile. |
| 444 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, | 444 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, |
| 445 ".", "//chrome") | 445 ".", "//chrome") |
| 446 } else { | 446 } else { |
| 447 # Non-mobile. | 447 # Non-mobile. |
| 448 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, | 448 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, |
| 449 ".", "//chrome") | 449 ".", "//chrome") |
| 450 deps += [ | 450 deps += [ |
| 451 "//components/usb_service", | |
| 452 "//device/core", | 451 "//device/core", |
| 452 "//device/usb", |
| 453 ] | 453 ] |
| 454 } | 454 } |
| 455 | 455 |
| 456 if (is_android) { | 456 if (is_android) { |
| 457 sources += rebase_path(gypi_values.chrome_browser_android_sources, | 457 sources += rebase_path(gypi_values.chrome_browser_android_sources, |
| 458 ".", "//chrome") | 458 ".", "//chrome") |
| 459 deps += [ | 459 deps += [ |
| 460 "//components/cdm/browser", | 460 "//components/cdm/browser", |
| 461 #"../components/components.gyp:web_contents_delegate_android", TODO(GYP) | 461 #"../components/components.gyp:web_contents_delegate_android", TODO(GYP) |
| 462 #"chrome_browser_jni_headers", TODO(GYP) | 462 #"chrome_browser_jni_headers", TODO(GYP) |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 # TODO(GYP) write internal action | 662 # TODO(GYP) write internal action |
| 663 if (false) { #if (is_chrome_branded) { | 663 if (false) { #if (is_chrome_branded) { |
| 664 action("chrome_internal_resources_gen") { | 664 action("chrome_internal_resources_gen") { |
| 665 # TODO(GYP) | 665 # TODO(GYP) |
| 666 } | 666 } |
| 667 } else { | 667 } else { |
| 668 group("chrome_internal_resources_gen") { | 668 group("chrome_internal_resources_gen") { |
| 669 # Empty placeholder. | 669 # Empty placeholder. |
| 670 } | 670 } |
| 671 } | 671 } |
| OLD | NEW |