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 | 8 |
9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 ".", "//chrome") | 286 ".", "//chrome") |
287 } | 287 } |
288 | 288 |
289 if (is_mac) { | 289 if (is_mac) { |
290 sources += rebase_path(gypi_values.chrome_browser_ui_mac_sources, | 290 sources += rebase_path(gypi_values.chrome_browser_ui_mac_sources, |
291 ".", "//chrome") | 291 ".", "//chrome") |
292 sources -= [ | 292 sources -= [ |
293 # Mac has its own way of drawing tabs. | 293 # Mac has its own way of drawing tabs. |
294 "tabs/tab_resources.cc", | 294 "tabs/tab_resources.cc", |
295 "tabs/tab_resources.h", | 295 "tabs/tab_resources.h", |
296 "views/extensions/extension_view_views.cc", | |
297 "views/extensions/extension_view_views.h", | |
298 ] | 296 ] |
299 deps += [ | 297 deps += [ |
300 #'../third_party/apple_sample_code/apple_sample_code.gyp:apple_sample_code
', TODO(GYP) | 298 #'../third_party/apple_sample_code/apple_sample_code.gyp:apple_sample_code
', TODO(GYP) |
301 #'../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google_
toolbox_for_mac', TODO(GYP) | 299 #'../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google_
toolbox_for_mac', TODO(GYP) |
302 #'../third_party/molokocacao/molokocacao.gyp:molokocacao', TODO(GYP) | 300 #'../third_party/molokocacao/molokocacao.gyp:molokocacao', TODO(GYP) |
303 #'../third_party/mozilla/mozilla.gyp:mozilla', TODO(GYP) | 301 #'../third_party/mozilla/mozilla.gyp:mozilla', TODO(GYP) |
304 ] | 302 ] |
305 libs += [ "Quartz.framework" ] | 303 libs += [ "Quartz.framework" ] |
306 # TODO(GYP) | 304 # TODO(GYP) |
307 #'actions': [ | 305 #'actions': [ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 } | 410 } |
413 if (enable_service_discovery) { | 411 if (enable_service_discovery) { |
414 sources += rebase_path( | 412 sources += rebase_path( |
415 gypi_values.chrome_browser_ui_service_discovery_sources, | 413 gypi_values.chrome_browser_ui_service_discovery_sources, |
416 ".", "//chrome") | 414 ".", "//chrome") |
417 } | 415 } |
418 if (enable_spellcheck) { | 416 if (enable_spellcheck) { |
419 deps += [ "//third_party/hunspell" ] | 417 deps += [ "//third_party/hunspell" ] |
420 } | 418 } |
421 } | 419 } |
OLD | NEW |