| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "//ui/message_center", | 243 "//ui/message_center", |
| 244 "//ui/resources", | 244 "//ui/resources", |
| 245 "//ui/shell_dialogs", | 245 "//ui/shell_dialogs", |
| 246 "//ui/strings", | 246 "//ui/strings", |
| 247 ] | 247 ] |
| 248 data_deps = [] | 248 data_deps = [] |
| 249 | 249 |
| 250 sources += | 250 sources += |
| 251 rebase_path(gypi_values.chrome_browser_undo_sources, ".", "//chrome") | 251 rebase_path(gypi_values.chrome_browser_undo_sources, ".", "//chrome") |
| 252 | 252 |
| 253 if (is_chromeos && use_cras) { |
| 254 defines += [ "USE_CRAS" ] |
| 255 } |
| 256 |
| 253 if (!is_ios) { | 257 if (!is_ios) { |
| 254 sources += | 258 sources += |
| 255 rebase_path(gypi_values.chrome_browser_non_ios_sources, ".", "//chrome") | 259 rebase_path(gypi_values.chrome_browser_non_ios_sources, ".", "//chrome") |
| 256 sources += rebase_path(gypi_values.chrome_browser_autocomplete_sources, | 260 sources += rebase_path(gypi_values.chrome_browser_autocomplete_sources, |
| 257 ".", | 261 ".", |
| 258 "//chrome") | 262 "//chrome") |
| 259 sources += rebase_path(gypi_values.chrome_browser_bookmark_sources, | 263 sources += rebase_path(gypi_values.chrome_browser_bookmark_sources, |
| 260 ".", | 264 ".", |
| 261 "//chrome") | 265 "//chrome") |
| 262 sources += rebase_path(gypi_values.chrome_browser_browser_process_sources, | 266 sources += rebase_path(gypi_values.chrome_browser_browser_process_sources, |
| (...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1384 # linking all of the test support. | 1388 # linking all of the test support. |
| 1385 static_library("pepper_cdm_test_constants") { | 1389 static_library("pepper_cdm_test_constants") { |
| 1386 testonly = true | 1390 testonly = true |
| 1387 visibility = [ "//chrome/*" ] | 1391 visibility = [ "//chrome/*" ] |
| 1388 sources = [ | 1392 sources = [ |
| 1389 "media/pepper_cdm_test_constants.cc", | 1393 "media/pepper_cdm_test_constants.cc", |
| 1390 "media/pepper_cdm_test_constants.h", | 1394 "media/pepper_cdm_test_constants.h", |
| 1391 ] | 1395 ] |
| 1392 } | 1396 } |
| 1393 } | 1397 } |
| OLD | NEW |