| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 | 443 |
| 444 if (is_android || is_ios) { | 444 if (is_android || is_ios) { |
| 445 # Mobile. | 445 # Mobile. |
| 446 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, | 446 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, |
| 447 ".", "//chrome") | 447 ".", "//chrome") |
| 448 } else { | 448 } else { |
| 449 # Non-mobile. | 449 # Non-mobile. |
| 450 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, | 450 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, |
| 451 ".", "//chrome") | 451 ".", "//chrome") |
| 452 deps += [ | 452 deps += [ |
| 453 "//components/usb_service", | |
| 454 "//device/core", | 453 "//device/core", |
| 454 "//device/usb", |
| 455 ] | 455 ] |
| 456 } | 456 } |
| 457 | 457 |
| 458 if (is_android) { | 458 if (is_android) { |
| 459 sources += rebase_path(gypi_values.chrome_browser_android_sources, | 459 sources += rebase_path(gypi_values.chrome_browser_android_sources, |
| 460 ".", "//chrome") | 460 ".", "//chrome") |
| 461 deps += [ | 461 deps += [ |
| 462 "//components/cdm/browser", | 462 "//components/cdm/browser", |
| 463 #"../components/components.gyp:web_contents_delegate_android", TODO(GYP) | 463 #"../components/components.gyp:web_contents_delegate_android", TODO(GYP) |
| 464 #"chrome_browser_jni_headers", TODO(GYP) | 464 #"chrome_browser_jni_headers", TODO(GYP) |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 # TODO(GYP) write internal action | 664 # TODO(GYP) write internal action |
| 665 if (false) { #if (is_chrome_branded) { | 665 if (false) { #if (is_chrome_branded) { |
| 666 action("chrome_internal_resources_gen") { | 666 action("chrome_internal_resources_gen") { |
| 667 # TODO(GYP) | 667 # TODO(GYP) |
| 668 } | 668 } |
| 669 } else { | 669 } else { |
| 670 group("chrome_internal_resources_gen") { | 670 group("chrome_internal_resources_gen") { |
| 671 # Empty placeholder. | 671 # Empty placeholder. |
| 672 } | 672 } |
| 673 } | 673 } |
| OLD | NEW |