| 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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 about_credits_file = "$target_gen_dir/about_credits.html" | 10 about_credits_file = "$target_gen_dir/about_credits.html" |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 } else if (safe_browsing_mode == 2) { | 321 } else if (safe_browsing_mode == 2) { |
| 322 defines += [ "MOBILE_SAFE_BROWSING" ] | 322 defines += [ "MOBILE_SAFE_BROWSING" ] |
| 323 } | 323 } |
| 324 } | 324 } |
| 325 | 325 |
| 326 if (is_linux) { | 326 if (is_linux) { |
| 327 configs += [ "//build/config/linux:udev" ] | 327 configs += [ "//build/config/linux:udev" ] |
| 328 deps += [ "//device/media_transfer_protocol" ] | 328 deps += [ "//device/media_transfer_protocol" ] |
| 329 } | 329 } |
| 330 if (is_linux && !is_chromeos) { | 330 if (is_linux && !is_chromeos) { |
| 331 deps += [ "//build/config/linux:libspeechd" ] | 331 deps += [ "//third_party/speech-dispatcher" ] |
| 332 } | 332 } |
| 333 | 333 |
| 334 if (is_chromeos) { | 334 if (is_chromeos) { |
| 335 sources += rebase_path(gypi_values.chrome_browser_chromeos_sources, | 335 sources += rebase_path(gypi_values.chrome_browser_chromeos_sources, |
| 336 ".", "//chrome") | 336 ".", "//chrome") |
| 337 deps += [ | 337 deps += [ |
| 338 #"browser_chromeos", TODO(GYP) | 338 #"browser_chromeos", TODO(GYP) |
| 339 ] | 339 ] |
| 340 } else { | 340 } else { |
| 341 # Non-ChromeOS. | 341 # Non-ChromeOS. |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 # TODO(GYP) write internal action | 651 # TODO(GYP) write internal action |
| 652 if (false) { #if (is_chrome_branded) { | 652 if (false) { #if (is_chrome_branded) { |
| 653 action("chrome_internal_resources_gen") { | 653 action("chrome_internal_resources_gen") { |
| 654 # TODO(GYP) | 654 # TODO(GYP) |
| 655 } | 655 } |
| 656 } else { | 656 } else { |
| 657 group("chrome_internal_resources_gen") { | 657 group("chrome_internal_resources_gen") { |
| 658 # Empty placeholder. | 658 # Empty placeholder. |
| 659 } | 659 } |
| 660 } | 660 } |
| OLD | NEW |